Commit 6fcd3b61 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] radio-usb-si4713: make si4713_register_i2c_adapter static

This function isn't used nowhere outside the same .c file.
Fixes this warning:

drivers/media/radio/si4713/radio-usb-si4713.c:418:5: warning: no previous prototype for 'si4713_register_i2c_adapter' [-Wmissing-prototypes]
 int si4713_register_i2c_adapter(struct si4713_usb_device *radio)
     ^

Cc: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent a622cc51
...@@ -415,7 +415,7 @@ static struct i2c_adapter si4713_i2c_adapter_template = { ...@@ -415,7 +415,7 @@ static struct i2c_adapter si4713_i2c_adapter_template = {
.algo = &si4713_algo, .algo = &si4713_algo,
}; };
int si4713_register_i2c_adapter(struct si4713_usb_device *radio) static int si4713_register_i2c_adapter(struct si4713_usb_device *radio)
{ {
radio->i2c_adapter = si4713_i2c_adapter_template; radio->i2c_adapter = si4713_i2c_adapter_template;
/* set up sysfs linkage to our parent device */ /* set up sysfs linkage to our parent device */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment