aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/w9968cf.c
diff options
context:
space:
mode:
authorDavid Brownell <david-b@pacbell.net>2007-10-13 17:56:32 -0400
committerJean Delvare <khali@hyperion.delvare>2007-10-13 17:56:32 -0400
commit3be27d37c257fa5f99363f9c8e06e405cbad712e (patch)
tree261b7945e9b7bf6819ad72f50bfe3d33a3a388bf /drivers/media/video/w9968cf.c
parente265cfa19c1220938de5f0291ed8d549a523de3c (diff)
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. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'drivers/media/video/w9968cf.c')
-rw-r--r--drivers/media/video/w9968cf.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/media/video/w9968cf.c b/drivers/media/video/w9968cf.c
index 5a1b5f5a7d46..9e7f3e685d73 100644
--- a/drivers/media/video/w9968cf.c
+++ b/drivers/media/video/w9968cf.c
@@ -444,8 +444,6 @@ static int w9968cf_i2c_smbus_xfer(struct i2c_adapter*, u16 addr,
444static u32 w9968cf_i2c_func(struct i2c_adapter*); 444static u32 w9968cf_i2c_func(struct i2c_adapter*);
445static int w9968cf_i2c_attach_inform(struct i2c_client*); 445static int w9968cf_i2c_attach_inform(struct i2c_client*);
446static int w9968cf_i2c_detach_inform(struct i2c_client*); 446static int w9968cf_i2c_detach_inform(struct i2c_client*);
447static int w9968cf_i2c_control(struct i2c_adapter*, unsigned int cmd,
448 unsigned long arg);
449 447
450/* Memory management */ 448/* Memory management */
451static void* rvmalloc(unsigned long size); 449static void* rvmalloc(unsigned long size);
@@ -1543,21 +1541,12 @@ static int w9968cf_i2c_detach_inform(struct i2c_client* client)
1543} 1541}
1544 1542
1545 1543
1546static int
1547w9968cf_i2c_control(struct i2c_adapter* adapter, unsigned int cmd,
1548 unsigned long arg)
1549{
1550 return 0;
1551}
1552
1553
1554static int w9968cf_i2c_init(struct w9968cf_device* cam) 1544static int w9968cf_i2c_init(struct w9968cf_device* cam)
1555{ 1545{
1556 int err = 0; 1546 int err = 0;
1557 1547
1558 static struct i2c_algorithm algo = { 1548 static struct i2c_algorithm algo = {
1559 .smbus_xfer = w9968cf_i2c_smbus_xfer, 1549 .smbus_xfer = w9968cf_i2c_smbus_xfer,
1560 .algo_control = w9968cf_i2c_control,
1561 .functionality = w9968cf_i2c_func, 1550 .functionality = w9968cf_i2c_func,
1562 }; 1551 };
1563 1552