diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-03-29 15:42:30 +0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-04-27 22:45:12 +0400 |
commit | 53c4e9551c2930767fcdaa54323616c32ed6e9c6 (patch) | |
tree | 76ae6b22c77f81e4f36b29ef79cfbd7ca6367ece /drivers/media/video/cx88 | |
parent | 5b9c4e6dbb3204568d4c058af6e34772393ada19 (diff) | |
download | linux-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/cx88')
-rw-r--r-- | drivers/media/video/cx88/cx88-i2c.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/video/cx88/cx88-i2c.c b/drivers/media/video/cx88/cx88-i2c.c index 9830d5c43921..7919a1f9da06 100644 --- a/drivers/media/video/cx88/cx88-i2c.c +++ b/drivers/media/video/cx88/cx88-i2c.c @@ -1,3 +1,4 @@ + /* cx88-i2c.c -- all the i2c code is here @@ -195,7 +196,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) |