diff options
Diffstat (limited to 'drivers/media/video/gspca/conex.c')
-rw-r--r-- | drivers/media/video/gspca/conex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/gspca/conex.c b/drivers/media/video/gspca/conex.c index 2f0b8d621e00..c98b5d69c438 100644 --- a/drivers/media/video/gspca/conex.c +++ b/drivers/media/video/gspca/conex.c | |||
@@ -1046,14 +1046,14 @@ static struct sd_desc sd_desc = { | |||
1046 | }; | 1046 | }; |
1047 | 1047 | ||
1048 | /* -- module initialisation -- */ | 1048 | /* -- module initialisation -- */ |
1049 | static __devinitdata struct usb_device_id device_table[] = { | 1049 | static const struct usb_device_id device_table[] __devinitconst = { |
1050 | {USB_DEVICE(0x0572, 0x0041)}, | 1050 | {USB_DEVICE(0x0572, 0x0041)}, |
1051 | {} | 1051 | {} |
1052 | }; | 1052 | }; |
1053 | MODULE_DEVICE_TABLE(usb, device_table); | 1053 | MODULE_DEVICE_TABLE(usb, device_table); |
1054 | 1054 | ||
1055 | /* -- device connect -- */ | 1055 | /* -- device connect -- */ |
1056 | static int sd_probe(struct usb_interface *intf, | 1056 | static int __devinit sd_probe(struct usb_interface *intf, |
1057 | const struct usb_device_id *id) | 1057 | const struct usb_device_id *id) |
1058 | { | 1058 | { |
1059 | return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd), | 1059 | return gspca_dev_probe(intf, id, &sd_desc, sizeof(struct sd), |