9
0
Fork 0

i2c: remove dead code

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2013-05-20 20:57:25 +02:00
parent 05753b98c0
commit 5cee215f3e
1 changed files with 0 additions and 16 deletions

View File

@ -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);