Commit 8a787b40 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

V4L/DVB (10107): More than one driver defines the same var name (dump_bridge). Add

"static" on stv06xx for all static functions and parameters to avoid
such troubles.

Cc: Erik Andren <erik.andren@gmail.com>
Cc: Jean-Francois Moine <moinejf@free.fr>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent dd9e7c3c
......@@ -33,8 +33,8 @@ MODULE_AUTHOR("Erik Andrén");
MODULE_DESCRIPTION("STV06XX USB Camera Driver");
MODULE_LICENSE("GPL");
int dump_bridge;
int dump_sensor;
static int dump_bridge;
static int dump_sensor;
int stv06xx_write_bridge(struct sd *sd, u16 address, u16 i2c_data)
{
......@@ -476,7 +476,7 @@ static int sd_probe(struct usb_interface *intf,
THIS_MODULE);
}
void sd_disconnect(struct usb_interface *intf)
static void sd_disconnect(struct usb_interface *intf)
{
struct gspca_dev *gspca_dev = usb_get_intfdata(intf);
struct sd *sd = (struct sd *) gspca_dev;
......
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