diff options
author | Jean Delvare <khali@linux-fr.org> | 2006-12-10 23:21:33 +0300 |
---|---|---|
committer | Jean Delvare <khali@arrakis.delvare> | 2006-12-10 23:21:33 +0300 |
commit | 3269711b76ba27b78862c48398b0d313ccaa99c2 (patch) | |
tree | fcd2daf3af9b20bb72ba28555cac1995312309c5 /drivers/media/video/zoran_card.c | |
parent | 6b65cd742823f78a6538491982159098ab5fcae1 (diff) | |
download | linux-3269711b76ba27b78862c48398b0d313ccaa99c2.tar.xz |
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/zoran_card.c')
-rw-r--r-- | drivers/media/video/zoran_card.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/zoran_card.c b/drivers/media/video/zoran_card.c index 653822ce391c..4d1eb2fba34a 100644 --- a/drivers/media/video/zoran_card.c +++ b/drivers/media/video/zoran_card.c @@ -849,7 +849,7 @@ zoran_register_i2c (struct zoran *zr) static void zoran_unregister_i2c (struct zoran *zr) { - i2c_bit_del_bus((&zr->i2c_adapter)); + i2c_del_adapter(&zr->i2c_adapter); } /* Check a zoran_params struct for correctness, insert default params */ |