1
0
Fork 0

[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: Mauro Carvalho Chehab <m.chehab@samsung.com>
hifive-unleashed-5.1
Mauro Carvalho Chehab 2014-01-13 11:34:37 -02:00
parent a622cc5187
commit 6fcd3b619c
1 changed files with 1 additions and 1 deletions

View File

@ -415,7 +415,7 @@ static struct i2c_adapter si4713_i2c_adapter_template = {
.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;
/* set up sysfs linkage to our parent device */