diff options
author | Trent Piepho <xyzzy@speakeasy.org> | 2007-10-10 04:37:43 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-10 12:35:29 -0400 |
commit | a991f44b79fa49b281eb078eed4a76a42101012a (patch) | |
tree | 5a6b7a4ce700ef8bcdf59f816c0c04b5e64d215b /drivers/media/video/mxb.c | |
parent | e77e2c2f2989eefff7e1c0fff9cb72afaedf6796 (diff) |
V4L/DVB (6316): Change list_for_each+list_entry to list_for_each_entry
The rest of V4L files.
There is one list_for_each+list_entry in cpia_pp.c that
wasn't changed because it expects the loop iterator to remain NULL if
the list is empty.
A bug in vivi is fixed; the 'safe' version needs to be used because the loop
deletes the list entries.
Simplify a second loop in vivi and get rid if an un-used variable in that loop.
Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/mxb.c')
-rw-r--r-- | drivers/media/video/mxb.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/media/video/mxb.c b/drivers/media/video/mxb.c index 152cc6b3e152..98ad3092a079 100644 --- a/drivers/media/video/mxb.c +++ b/drivers/media/video/mxb.c | |||
@@ -153,7 +153,6 @@ static int mxb_probe(struct saa7146_dev* dev) | |||
153 | { | 153 | { |
154 | struct mxb* mxb = NULL; | 154 | struct mxb* mxb = NULL; |
155 | struct i2c_client *client; | 155 | struct i2c_client *client; |
156 | struct list_head *item; | ||
157 | int result; | 156 | int result; |
158 | 157 | ||
159 | if ((result = request_module("saa7111")) < 0) { | 158 | if ((result = request_module("saa7111")) < 0) { |
@@ -196,8 +195,7 @@ static int mxb_probe(struct saa7146_dev* dev) | |||
196 | } | 195 | } |
197 | 196 | ||
198 | /* loop through all i2c-devices on the bus and look who is there */ | 197 | /* loop through all i2c-devices on the bus and look who is there */ |
199 | list_for_each(item,&mxb->i2c_adapter.clients) { | 198 | list_for_each_entry(client, &mxb->i2c_adapter.clients, list) { |
200 | client = list_entry(item, struct i2c_client, list); | ||
201 | if( I2C_ADDR_TEA6420_1 == client->addr ) | 199 | if( I2C_ADDR_TEA6420_1 == client->addr ) |
202 | mxb->tea6420_1 = client; | 200 | mxb->tea6420_1 = client; |
203 | if( I2C_ADDR_TEA6420_2 == client->addr ) | 201 | if( I2C_ADDR_TEA6420_2 == client->addr ) |