From 5cee215f3eabdef1648773e34eed2f2d1c8f5088 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Mon, 20 May 2013 20:57:25 +0200 Subject: [PATCH] i2c: remove dead code Signed-off-by: Sascha Hauer --- drivers/i2c/i2c.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/drivers/i2c/i2c.c b/drivers/i2c/i2c.c index 488b636b2..53a11fe44 100644 --- a/drivers/i2c/i2c.c +++ b/drivers/i2c/i2c.c @@ -265,23 +265,7 @@ struct i2c_client *i2c_new_device(struct i2c_adapter *adapter, return NULL; } -#if 0 - /* drivers may modify this initial i/o setup */ - status = master->setup(client); - if (status < 0) { - printf("can't setup %s, status %d\n", - client->dev.name, status); - goto fail; - } -#endif - return client; - -#if 0 - fail: - free(proxy); - return NULL; -#endif } EXPORT_SYMBOL(i2c_new_device);