diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-17 12:23:57 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-17 12:23:57 -0200 |
commit | 61593977cbfd023e6517df74c796085165346ea3 (patch) | |
tree | 033af8da88e159a1a93f5d59d125c8a89b85375f /linux/drivers/media/video/em28xx/em28xx-i2c.c | |
parent | c0b9721b6eaa5f1183f2b22f730626ecd195c832 (diff) | |
download | mediapointer-dvb-s2-61593977cbfd023e6517df74c796085165346ea3.tar.gz mediapointer-dvb-s2-61593977cbfd023e6517df74c796085165346ea3.tar.bz2 |
backport changeset 3be27d37c257fa5f99363f9c8e06e405cbad712e
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Original description:
i2c: Remove NOP i2c_algorithm.algo_control() methods
This removes NOP implementations of i2c_algorithm.algo_control.
With this change, there are no implementations of this hook in
the kernel.org tree ... that hook seems about ripe to remove.
kernel-sync:
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/em28xx/em28xx-i2c.c')
-rw-r--r-- | linux/drivers/media/video/em28xx/em28xx-i2c.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/linux/drivers/media/video/em28xx/em28xx-i2c.c b/linux/drivers/media/video/em28xx/em28xx-i2c.c index f9a8002d3..ca302b535 100644 --- a/linux/drivers/media/video/em28xx/em28xx-i2c.c +++ b/linux/drivers/media/video/em28xx/em28xx-i2c.c @@ -383,15 +383,6 @@ static int em28xx_i2c_eeprom(struct em28xx *dev, unsigned char *eedata, int len) /* ----------------------------------------------------------- */ /* - * algo_control() - */ -static int algo_control(struct i2c_adapter *adapter, - unsigned int cmd, unsigned long arg) -{ - return 0; -} - -/* * functionality() */ static u32 functionality(struct i2c_adapter *adap) @@ -486,7 +477,6 @@ static int attach_inform(struct i2c_client *client) static struct i2c_algorithm em28xx_algo = { .master_xfer = em28xx_i2c_xfer, - .algo_control = algo_control, .functionality = functionality, }; |