diff options
Diffstat (limited to 'kernel/drivers/input/misc/ad714x-i2c.c')
-rw-r--r-- | kernel/drivers/input/misc/ad714x-i2c.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/kernel/drivers/input/misc/ad714x-i2c.c b/kernel/drivers/input/misc/ad714x-i2c.c index 189bdc8e9..2f047738b 100644 --- a/kernel/drivers/input/misc/ad714x-i2c.c +++ b/kernel/drivers/input/misc/ad714x-i2c.c @@ -85,15 +85,6 @@ static int ad714x_i2c_probe(struct i2c_client *client, return 0; } -static int ad714x_i2c_remove(struct i2c_client *client) -{ - struct ad714x_chip *chip = i2c_get_clientdata(client); - - ad714x_remove(chip); - - return 0; -} - static const struct i2c_device_id ad714x_id[] = { { "ad7142_captouch", 0 }, { "ad7143_captouch", 0 }, @@ -110,7 +101,6 @@ static struct i2c_driver ad714x_i2c_driver = { .pm = &ad714x_i2c_pm, }, .probe = ad714x_i2c_probe, - .remove = ad714x_i2c_remove, .id_table = ad714x_id, }; |