mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 18:21:49 +00:00
V4L/DVB (5518): Fix a bug on device detection
Thanks to: Thierry MERLE <thierry.merle@free.fr> for pointing this Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
c682b3a7fb
commit
f8a389db50
@ -1027,6 +1027,7 @@ struct usbvision_device_data_st usbvision_device_data[] = {
|
||||
.ModelString = "Hauppauge WinTv-USB",
|
||||
},
|
||||
};
|
||||
const int usbvision_device_data_size=ARRAY_SIZE(usbvision_device_data);
|
||||
|
||||
/* Supported Devices */
|
||||
|
||||
|
@ -63,3 +63,5 @@
|
||||
#define PINNA_LINX_VD_IN_CAB_PAL 62
|
||||
#define PINNA_PCTV_BUNGEE_PAL_FM 63
|
||||
#define HPG_WINTV 64
|
||||
|
||||
extern const int usbvision_device_data_size;
|
||||
|
@ -1792,6 +1792,10 @@ static int __devinit usbvision_probe(struct usb_interface *intf,
|
||||
dev->descriptor.idProduct, ifnum);
|
||||
|
||||
model = devid->driver_info;
|
||||
if ( (model<0) || (model>=usbvision_device_data_size) ) {
|
||||
printk(KERN_INFO "model out of bounds %d\n",model);
|
||||
return -ENODEV;
|
||||
}
|
||||
printk(KERN_INFO "%s: %s found\n", __FUNCTION__,
|
||||
usbvision_device_data[model].ModelString);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user