diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-03-29 11:42:30 (GMT) |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-04-27 18:45:12 (GMT) |
commit | 53c4e9551c2930767fcdaa54323616c32ed6e9c6 (patch) | |
tree | 76ae6b22c77f81e4f36b29ef79cfbd7ca6367ece /drivers/media/video/bt8xx | |
parent | 5b9c4e6dbb3204568d4c058af6e34772393ada19 (diff) | |
download | linux-fsl-qoriq-53c4e9551c2930767fcdaa54323616c32ed6e9c6.tar.xz |
V4L/DVB (5479): Use ARRAY_SIZE instead of a magic number
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/bt8xx')
-rw-r--r-- | drivers/media/video/bt8xx/bttv-i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/bt8xx/bttv-i2c.c b/drivers/media/video/bt8xx/bttv-i2c.c index 62b8730..0dfa49b 100644 --- a/drivers/media/video/bt8xx/bttv-i2c.c +++ b/drivers/media/video/bt8xx/bttv-i2c.c @@ -412,7 +412,7 @@ static void do_i2c_scan(char *name, struct i2c_client *c) unsigned char buf; int i,rc; - for (i = 0; i < 128; i++) { + for (i = 0; i < ARRAY_SIZE(i2c_devs); i++) { c->addr = i; rc = i2c_master_recv(c,&buf,0); if (rc < 0) |