diff options
author | Jean Delvare <khali@linux-fr.org> | 2006-12-10 15:21:33 -0500 |
---|---|---|
committer | Jean Delvare <khali@arrakis.delvare> | 2006-12-10 15:21:33 -0500 |
commit | 3269711b76ba27b78862c48398b0d313ccaa99c2 (patch) | |
tree | fcd2daf3af9b20bb72ba28555cac1995312309c5 /drivers/media/video/cx88/cx88-vp3054-i2c.c | |
parent | 6b65cd742823f78a6538491982159098ab5fcae1 (diff) |
i2c: Discard the i2c algo del_bus wrappers
They are all only calling i2c_del_adapter, so we may as well do
it directly.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'drivers/media/video/cx88/cx88-vp3054-i2c.c')
-rw-r--r-- | drivers/media/video/cx88/cx88-vp3054-i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/cx88/cx88-vp3054-i2c.c b/drivers/media/video/cx88/cx88-vp3054-i2c.c index 2b4f1970c7d..6068c9bf82c 100644 --- a/drivers/media/video/cx88/cx88-vp3054-i2c.c +++ b/drivers/media/video/cx88/cx88-vp3054-i2c.c | |||
@@ -168,7 +168,7 @@ void vp3054_i2c_remove(struct cx8802_dev *dev) | |||
168 | dev->core->board != CX88_BOARD_DNTV_LIVE_DVB_T_PRO) | 168 | dev->core->board != CX88_BOARD_DNTV_LIVE_DVB_T_PRO) |
169 | return; | 169 | return; |
170 | 170 | ||
171 | i2c_bit_del_bus(&vp3054_i2c->adap); | 171 | i2c_del_adapter(&vp3054_i2c->adap); |
172 | kfree(vp3054_i2c); | 172 | kfree(vp3054_i2c); |
173 | } | 173 | } |
174 | 174 | ||