diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-03-14 15:24:57 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-21 11:53:26 -0500 |
commit | 19478843e4f8af7de9b297876519ee8b98c2f5ad (patch) | |
tree | 3ba0739399f7acbdc5a96d46bff9f6b17c1c520c /drivers | |
parent | 5e5890e16ea917ad489a7778f51631bdb14523a2 (diff) |
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/video/em28xx/em28xx-video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/em28xx/em28xx-video.c b/drivers/media/video/em28xx/em28xx-video.c index f56ae4852165..78f0f7a706ea 100644 --- a/drivers/media/video/em28xx/em28xx-video.c +++ b/drivers/media/video/em28xx/em28xx-video.c | |||
@@ -1949,7 +1949,7 @@ static int em28xx_usb_probe(struct usb_interface *interface, | |||
1949 | 1949 | ||
1950 | model=id->driver_info; | 1950 | model=id->driver_info; |
1951 | 1951 | ||
1952 | if (nr > EM28XX_MAXBOARDS) { | 1952 | if (nr >= EM28XX_MAXBOARDS) { |
1953 | printk (DRIVER_NAME ": Supports only %i em28xx boards.\n",EM28XX_MAXBOARDS); | 1953 | printk (DRIVER_NAME ": Supports only %i em28xx boards.\n",EM28XX_MAXBOARDS); |
1954 | em28xx_devused&=~(1<<nr); | 1954 | em28xx_devused&=~(1<<nr); |
1955 | return -ENOMEM; | 1955 | return -ENOMEM; |