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 | |
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')
-rw-r--r-- | drivers/media/video/bt8xx/bttv-i2c.c | 6 | ||||
-rw-r--r-- | drivers/media/video/cx88/cx88-core.c | 2 | ||||
-rw-r--r-- | drivers/media/video/cx88/cx88-vp3054-i2c.c | 2 | ||||
-rw-r--r-- | drivers/media/video/vino.c | 2 | ||||
-rw-r--r-- | drivers/media/video/zoran_card.c | 2 |
5 files changed, 5 insertions, 9 deletions
diff --git a/drivers/media/video/bt8xx/bttv-i2c.c b/drivers/media/video/bt8xx/bttv-i2c.c index 70de6c96e201..62b873076e09 100644 --- a/drivers/media/video/bt8xx/bttv-i2c.c +++ b/drivers/media/video/bt8xx/bttv-i2c.c | |||
@@ -479,11 +479,7 @@ int __devexit fini_bttv_i2c(struct bttv *btv) | |||
479 | if (0 != btv->i2c_rc) | 479 | if (0 != btv->i2c_rc) |
480 | return 0; | 480 | return 0; |
481 | 481 | ||
482 | if (btv->use_i2c_hw) { | 482 | return i2c_del_adapter(&btv->c.i2c_adap); |
483 | return i2c_del_adapter(&btv->c.i2c_adap); | ||
484 | } else { | ||
485 | return i2c_bit_del_bus(&btv->c.i2c_adap); | ||
486 | } | ||
487 | } | 483 | } |
488 | 484 | ||
489 | /* | 485 | /* |
diff --git a/drivers/media/video/cx88/cx88-core.c b/drivers/media/video/cx88/cx88-core.c index 4b655f2ef278..453af5e943ff 100644 --- a/drivers/media/video/cx88/cx88-core.c +++ b/drivers/media/video/cx88/cx88-core.c | |||
@@ -1153,7 +1153,7 @@ void cx88_core_put(struct cx88_core *core, struct pci_dev *pci) | |||
1153 | mutex_lock(&devlist); | 1153 | mutex_lock(&devlist); |
1154 | cx88_ir_fini(core); | 1154 | cx88_ir_fini(core); |
1155 | if (0 == core->i2c_rc) | 1155 | if (0 == core->i2c_rc) |
1156 | i2c_bit_del_bus(&core->i2c_adap); | 1156 | i2c_del_adapter(&core->i2c_adap); |
1157 | list_del(&core->devlist); | 1157 | list_del(&core->devlist); |
1158 | iounmap(core->lmmio); | 1158 | iounmap(core->lmmio); |
1159 | cx88_devcount--; | 1159 | cx88_devcount--; |
diff --git a/drivers/media/video/cx88/cx88-vp3054-i2c.c b/drivers/media/video/cx88/cx88-vp3054-i2c.c index 2b4f1970c7df..6068c9bf82cd 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 | ||
diff --git a/drivers/media/video/vino.c b/drivers/media/video/vino.c index 6b6dff4d236a..a373c142e742 100644 --- a/drivers/media/video/vino.c +++ b/drivers/media/video/vino.c | |||
@@ -782,7 +782,7 @@ static int vino_i2c_add_bus(void) | |||
782 | 782 | ||
783 | static int vino_i2c_del_bus(void) | 783 | static int vino_i2c_del_bus(void) |
784 | { | 784 | { |
785 | return i2c_sgi_del_bus(&vino_i2c_adapter); | 785 | return i2c_del_adapter(&vino_i2c_adapter); |
786 | } | 786 | } |
787 | 787 | ||
788 | static int i2c_camera_command(unsigned int cmd, void *arg) | 788 | static int i2c_camera_command(unsigned int cmd, void *arg) |
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) | |||
849 | static void | 849 | static void |
850 | zoran_unregister_i2c (struct zoran *zr) | 850 | zoran_unregister_i2c (struct zoran *zr) |
851 | { | 851 | { |
852 | i2c_bit_del_bus((&zr->i2c_adapter)); | 852 | i2c_del_adapter(&zr->i2c_adapter); |
853 | } | 853 | } |
854 | 854 | ||
855 | /* Check a zoran_params struct for correctness, insert default params */ | 855 | /* Check a zoran_params struct for correctness, insert default params */ |