i2c-dev: Delete empty detach_client callback

Implementing detach_client is optional, so there is no point in
an empty implementation.

Likewise, i2c driver IDs are optional, and we don't need one.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
This commit is contained in:
Jean Delvare
2008-07-14 22:38:34 +02:00
committed by Jean Delvare
parent 954a99307f
commit f6a7110520
2 changed files with 0 additions and 9 deletions

View File

@ -548,19 +548,12 @@ static int i2cdev_detach_adapter(struct i2c_adapter *adap)
return 0;
}
static int i2cdev_detach_client(struct i2c_client *client)
{
return 0;
}
static struct i2c_driver i2cdev_driver = {
.driver = {
.name = "dev_driver",
},
.id = I2C_DRIVERID_I2CDEV,
.attach_adapter = i2cdev_attach_adapter,
.detach_adapter = i2cdev_detach_adapter,
.detach_client = i2cdev_detach_client,
};
/* ------------------------------------------------------------------------- */