mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-19 12:00:00 +00:00
V4L/DVB (3499): Fix a bug when more than MAXBOARDS were plugged on em28xx
Coverity reported a bug at checking max number of supported boards by em28xx init code. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
5e5890e16e
commit
19478843e4
@ -1949,7 +1949,7 @@ static int em28xx_usb_probe(struct usb_interface *interface,
|
||||
|
||||
model=id->driver_info;
|
||||
|
||||
if (nr > EM28XX_MAXBOARDS) {
|
||||
if (nr >= EM28XX_MAXBOARDS) {
|
||||
printk (DRIVER_NAME ": Supports only %i em28xx boards.\n",EM28XX_MAXBOARDS);
|
||||
em28xx_devused&=~(1<<nr);
|
||||
return -ENOMEM;
|
||||
|
Loading…
x
Reference in New Issue
Block a user