diff options
Diffstat (limited to 'drivers/input/touchscreen/tsc2007.c')
-rw-r--r-- | drivers/input/touchscreen/tsc2007.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/touchscreen/tsc2007.c b/drivers/input/touchscreen/tsc2007.c index 1473d2382afd..0b67ba476b4c 100644 --- a/drivers/input/touchscreen/tsc2007.c +++ b/drivers/input/touchscreen/tsc2007.c | |||
@@ -273,7 +273,7 @@ static void tsc2007_close(struct input_dev *input_dev) | |||
273 | tsc2007_stop(ts); | 273 | tsc2007_stop(ts); |
274 | } | 274 | } |
275 | 275 | ||
276 | static int __devinit tsc2007_probe(struct i2c_client *client, | 276 | static int tsc2007_probe(struct i2c_client *client, |
277 | const struct i2c_device_id *id) | 277 | const struct i2c_device_id *id) |
278 | { | 278 | { |
279 | struct tsc2007 *ts; | 279 | struct tsc2007 *ts; |
@@ -366,7 +366,7 @@ static int __devinit tsc2007_probe(struct i2c_client *client, | |||
366 | return err; | 366 | return err; |
367 | } | 367 | } |
368 | 368 | ||
369 | static int __devexit tsc2007_remove(struct i2c_client *client) | 369 | static int tsc2007_remove(struct i2c_client *client) |
370 | { | 370 | { |
371 | struct tsc2007 *ts = i2c_get_clientdata(client); | 371 | struct tsc2007 *ts = i2c_get_clientdata(client); |
372 | struct tsc2007_platform_data *pdata = client->dev.platform_data; | 372 | struct tsc2007_platform_data *pdata = client->dev.platform_data; |
@@ -396,7 +396,7 @@ static struct i2c_driver tsc2007_driver = { | |||
396 | }, | 396 | }, |
397 | .id_table = tsc2007_idtable, | 397 | .id_table = tsc2007_idtable, |
398 | .probe = tsc2007_probe, | 398 | .probe = tsc2007_probe, |
399 | .remove = __devexit_p(tsc2007_remove), | 399 | .remove = tsc2007_remove, |
400 | }; | 400 | }; |
401 | 401 | ||
402 | module_i2c_driver(tsc2007_driver); | 402 | module_i2c_driver(tsc2007_driver); |