V4L/DVB (5513): Bt878: prevent probing wrong card entry
authorAkinobu Mita <akinobu.mita@gmail.com>
Sat, 14 Apr 2007 13:24:15 +0000 (10:24 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Fri, 27 Apr 2007 18:45:39 +0000 (15:45 -0300)
commit66ab6e023ebbb362b7cf42c8f56cc54a85fb7bb0
tree2a7888e2c58064defab57feee9fcf463770b15ff
parentf2c340583c27f2f93ed1c720ae863ea601e1d74a
V4L/DVB (5513): Bt878: prevent probing wrong card entry

I got strange message when I did modprobe bt878:
bt878_probe: card id=[0x0],[ <NULL> ] has DVB functions.
The card_list array is terminated by sentinel entry.
But this list is traversed by:
for (i = 0, dvb_cards = card_list; i < ARRAY_SIZE(card_list);
     i++, dvb_cards++) {
...
}
in bt878_probe().
So this loop checks dummy sentinel entry, too.
This patch removes unnecessary sentinel entry.

Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/dvb/bt8xx/bt878.c