aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx88/cx88-i2c.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2007-03-29 07:42:30 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2007-04-27 14:45:12 -0400
commit53c4e9551c2930767fcdaa54323616c32ed6e9c6 (patch)
tree76ae6b22c77f81e4f36b29ef79cfbd7ca6367ece /drivers/media/video/cx88/cx88-i2c.c
parent5b9c4e6dbb3204568d4c058af6e34772393ada19 (diff)
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/cx88-i2c.c')
-rw-r--r--drivers/media/video/cx88/cx88-i2c.c3
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 @@
1
1/* 2/*
2 3
3 cx88-i2c.c -- all the i2c code is here 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)
195 unsigned char buf; 196 unsigned char buf;
196 int i,rc; 197 int i,rc;
197 198
198 for (i = 0; i < 128; i++) { 199 for (i = 0; i < ARRAY_SIZE(i2c_devs); i++) {
199 c->addr = i; 200 c->addr = i;
200 rc = i2c_master_recv(c,&buf,0); 201 rc = i2c_master_recv(c,&buf,0);
201 if (rc < 0) 202 if (rc < 0)