diff options
| author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-24 00:50:47 -0500 |
|---|---|---|
| committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2012-11-24 03:05:38 -0500 |
| commit | e2619cf78e19476bfd7ceaefa9eff0847529346e (patch) | |
| tree | e1eec6ea5d420491e9afc18a4d604f7c33c325de /drivers/input/touchscreen | |
| parent | 5298cc4cc753bbe4c530b41341834f6ef3344d0d (diff) | |
Input: remove use of __devexit
CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/touchscreen')
39 files changed, 40 insertions, 40 deletions
diff --git a/drivers/input/touchscreen/88pm860x-ts.c b/drivers/input/touchscreen/88pm860x-ts.c index 183d35b9d07..c7068942ebe 100644 --- a/drivers/input/touchscreen/88pm860x-ts.c +++ b/drivers/input/touchscreen/88pm860x-ts.c | |||
| @@ -293,7 +293,7 @@ out: | |||
| 293 | return ret; | 293 | return ret; |
| 294 | } | 294 | } |
| 295 | 295 | ||
| 296 | static int __devexit pm860x_touch_remove(struct platform_device *pdev) | 296 | static int pm860x_touch_remove(struct platform_device *pdev) |
| 297 | { | 297 | { |
| 298 | struct pm860x_touch *touch = platform_get_drvdata(pdev); | 298 | struct pm860x_touch *touch = platform_get_drvdata(pdev); |
| 299 | 299 | ||
diff --git a/drivers/input/touchscreen/ad7877.c b/drivers/input/touchscreen/ad7877.c index 61c0a98d6dd..23fa829b869 100644 --- a/drivers/input/touchscreen/ad7877.c +++ b/drivers/input/touchscreen/ad7877.c | |||
| @@ -810,7 +810,7 @@ err_free_mem: | |||
| 810 | return err; | 810 | return err; |
| 811 | } | 811 | } |
| 812 | 812 | ||
| 813 | static int __devexit ad7877_remove(struct spi_device *spi) | 813 | static int ad7877_remove(struct spi_device *spi) |
| 814 | { | 814 | { |
| 815 | struct ad7877 *ts = dev_get_drvdata(&spi->dev); | 815 | struct ad7877 *ts = dev_get_drvdata(&spi->dev); |
| 816 | 816 | ||
diff --git a/drivers/input/touchscreen/ad7879-i2c.c b/drivers/input/touchscreen/ad7879-i2c.c index b155770c521..dcf39077154 100644 --- a/drivers/input/touchscreen/ad7879-i2c.c +++ b/drivers/input/touchscreen/ad7879-i2c.c | |||
| @@ -75,7 +75,7 @@ static int ad7879_i2c_probe(struct i2c_client *client, | |||
| 75 | return 0; | 75 | return 0; |
| 76 | } | 76 | } |
| 77 | 77 | ||
| 78 | static int __devexit ad7879_i2c_remove(struct i2c_client *client) | 78 | static int ad7879_i2c_remove(struct i2c_client *client) |
| 79 | { | 79 | { |
| 80 | struct ad7879 *ts = i2c_get_clientdata(client); | 80 | struct ad7879 *ts = i2c_get_clientdata(client); |
| 81 | 81 | ||
diff --git a/drivers/input/touchscreen/ad7879-spi.c b/drivers/input/touchscreen/ad7879-spi.c index c9b73e0b652..606da5bd611 100644 --- a/drivers/input/touchscreen/ad7879-spi.c +++ b/drivers/input/touchscreen/ad7879-spi.c | |||
| @@ -137,7 +137,7 @@ static int ad7879_spi_probe(struct spi_device *spi) | |||
| 137 | return 0; | 137 | return 0; |
| 138 | } | 138 | } |
| 139 | 139 | ||
| 140 | static int __devexit ad7879_spi_remove(struct spi_device *spi) | 140 | static int ad7879_spi_remove(struct spi_device *spi) |
| 141 | { | 141 | { |
| 142 | struct ad7879 *ts = spi_get_drvdata(spi); | 142 | struct ad7879 *ts = spi_get_drvdata(spi); |
| 143 | 143 | ||
diff --git a/drivers/input/touchscreen/ads7846.c b/drivers/input/touchscreen/ads7846.c index 156a36b43bf..4f702b3ec1a 100644 --- a/drivers/input/touchscreen/ads7846.c +++ b/drivers/input/touchscreen/ads7846.c | |||
| @@ -1390,7 +1390,7 @@ static int ads7846_probe(struct spi_device *spi) | |||
| 1390 | return err; | 1390 | return err; |
| 1391 | } | 1391 | } |
| 1392 | 1392 | ||
| 1393 | static int __devexit ads7846_remove(struct spi_device *spi) | 1393 | static int ads7846_remove(struct spi_device *spi) |
| 1394 | { | 1394 | { |
| 1395 | struct ads7846 *ts = dev_get_drvdata(&spi->dev); | 1395 | struct ads7846 *ts = dev_get_drvdata(&spi->dev); |
| 1396 | 1396 | ||
diff --git a/drivers/input/touchscreen/atmel_mxt_ts.c b/drivers/input/touchscreen/atmel_mxt_ts.c index cd961bcf9f0..d04f810cb1d 100644 --- a/drivers/input/touchscreen/atmel_mxt_ts.c +++ b/drivers/input/touchscreen/atmel_mxt_ts.c | |||
| @@ -1200,7 +1200,7 @@ err_free_mem: | |||
| 1200 | return error; | 1200 | return error; |
| 1201 | } | 1201 | } |
| 1202 | 1202 | ||
| 1203 | static int __devexit mxt_remove(struct i2c_client *client) | 1203 | static int mxt_remove(struct i2c_client *client) |
| 1204 | { | 1204 | { |
| 1205 | struct mxt_data *data = i2c_get_clientdata(client); | 1205 | struct mxt_data *data = i2c_get_clientdata(client); |
| 1206 | 1206 | ||
diff --git a/drivers/input/touchscreen/atmel_tsadcc.c b/drivers/input/touchscreen/atmel_tsadcc.c index 4b4f5ab76e5..55092d1c5cb 100644 --- a/drivers/input/touchscreen/atmel_tsadcc.c +++ b/drivers/input/touchscreen/atmel_tsadcc.c | |||
| @@ -323,7 +323,7 @@ err_free_mem: | |||
| 323 | return err; | 323 | return err; |
| 324 | } | 324 | } |
| 325 | 325 | ||
| 326 | static int __devexit atmel_tsadcc_remove(struct platform_device *pdev) | 326 | static int atmel_tsadcc_remove(struct platform_device *pdev) |
| 327 | { | 327 | { |
| 328 | struct atmel_tsadcc *ts_dev = dev_get_drvdata(&pdev->dev); | 328 | struct atmel_tsadcc *ts_dev = dev_get_drvdata(&pdev->dev); |
| 329 | struct resource *res; | 329 | struct resource *res; |
diff --git a/drivers/input/touchscreen/auo-pixcir-ts.c b/drivers/input/touchscreen/auo-pixcir-ts.c index cdd233f3ed8..c6e19a96348 100644 --- a/drivers/input/touchscreen/auo-pixcir-ts.c +++ b/drivers/input/touchscreen/auo-pixcir-ts.c | |||
| @@ -599,7 +599,7 @@ err_gpio_int: | |||
| 599 | return ret; | 599 | return ret; |
| 600 | } | 600 | } |
| 601 | 601 | ||
| 602 | static int __devexit auo_pixcir_remove(struct i2c_client *client) | 602 | static int auo_pixcir_remove(struct i2c_client *client) |
| 603 | { | 603 | { |
| 604 | struct auo_pixcir_ts *ts = i2c_get_clientdata(client); | 604 | struct auo_pixcir_ts *ts = i2c_get_clientdata(client); |
| 605 | const struct auo_pixcir_ts_platdata *pdata = client->dev.platform_data; | 605 | const struct auo_pixcir_ts_platdata *pdata = client->dev.platform_data; |
diff --git a/drivers/input/touchscreen/bu21013_ts.c b/drivers/input/touchscreen/bu21013_ts.c index bf90391aae5..59a8ce86fcd 100644 --- a/drivers/input/touchscreen/bu21013_ts.c +++ b/drivers/input/touchscreen/bu21013_ts.c | |||
| @@ -549,7 +549,7 @@ err_free_mem: | |||
| 549 | * This function uses to remove the i2c-client | 549 | * This function uses to remove the i2c-client |
| 550 | * touchscreen driver and returns integer. | 550 | * touchscreen driver and returns integer. |
| 551 | */ | 551 | */ |
| 552 | static int __devexit bu21013_remove(struct i2c_client *client) | 552 | static int bu21013_remove(struct i2c_client *client) |
| 553 | { | 553 | { |
| 554 | struct bu21013_ts_data *bu21013_data = i2c_get_clientdata(client); | 554 | struct bu21013_ts_data *bu21013_data = i2c_get_clientdata(client); |
| 555 | 555 | ||
diff --git a/drivers/input/touchscreen/cy8ctmg110_ts.c b/drivers/input/touchscreen/cy8ctmg110_ts.c index 0aaa24ec6f5..96e0eedcc7e 100644 --- a/drivers/input/touchscreen/cy8ctmg110_ts.c +++ b/drivers/input/touchscreen/cy8ctmg110_ts.c | |||
| @@ -323,7 +323,7 @@ static int cy8ctmg110_resume(struct device *dev) | |||
| 323 | static SIMPLE_DEV_PM_OPS(cy8ctmg110_pm, cy8ctmg110_suspend, cy8ctmg110_resume); | 323 | static SIMPLE_DEV_PM_OPS(cy8ctmg110_pm, cy8ctmg110_suspend, cy8ctmg110_resume); |
| 324 | #endif | 324 | #endif |
| 325 | 325 | ||
| 326 | static int __devexit cy8ctmg110_remove(struct i2c_client *client) | 326 | static int cy8ctmg110_remove(struct i2c_client *client) |
| 327 | { | 327 | { |
| 328 | struct cy8ctmg110 *ts = i2c_get_clientdata(client); | 328 | struct cy8ctmg110 *ts = i2c_get_clientdata(client); |
| 329 | 329 | ||
diff --git a/drivers/input/touchscreen/cyttsp_i2c.c b/drivers/input/touchscreen/cyttsp_i2c.c index 167e9834e59..4dbdf44b8fc 100644 --- a/drivers/input/touchscreen/cyttsp_i2c.c +++ b/drivers/input/touchscreen/cyttsp_i2c.c | |||
| @@ -102,7 +102,7 @@ static int cyttsp_i2c_probe(struct i2c_client *client, | |||
| 102 | return 0; | 102 | return 0; |
| 103 | } | 103 | } |
| 104 | 104 | ||
| 105 | static int __devexit cyttsp_i2c_remove(struct i2c_client *client) | 105 | static int cyttsp_i2c_remove(struct i2c_client *client) |
| 106 | { | 106 | { |
| 107 | struct cyttsp *ts = i2c_get_clientdata(client); | 107 | struct cyttsp *ts = i2c_get_clientdata(client); |
| 108 | 108 | ||
diff --git a/drivers/input/touchscreen/cyttsp_spi.c b/drivers/input/touchscreen/cyttsp_spi.c index 8ea29d9ae3b..638e20310f1 100644 --- a/drivers/input/touchscreen/cyttsp_spi.c +++ b/drivers/input/touchscreen/cyttsp_spi.c | |||
| @@ -172,7 +172,7 @@ static int cyttsp_spi_probe(struct spi_device *spi) | |||
| 172 | return 0; | 172 | return 0; |
| 173 | } | 173 | } |
| 174 | 174 | ||
| 175 | static int __devexit cyttsp_spi_remove(struct spi_device *spi) | 175 | static int cyttsp_spi_remove(struct spi_device *spi) |
| 176 | { | 176 | { |
| 177 | struct cyttsp *ts = spi_get_drvdata(spi); | 177 | struct cyttsp *ts = spi_get_drvdata(spi); |
| 178 | 178 | ||
diff --git a/drivers/input/touchscreen/da9034-ts.c b/drivers/input/touchscreen/da9034-ts.c index 53a95244a14..34ad84105e6 100644 --- a/drivers/input/touchscreen/da9034-ts.c +++ b/drivers/input/touchscreen/da9034-ts.c | |||
| @@ -361,7 +361,7 @@ err_free_touch: | |||
| 361 | return ret; | 361 | return ret; |
| 362 | } | 362 | } |
| 363 | 363 | ||
| 364 | static int __devexit da9034_touch_remove(struct platform_device *pdev) | 364 | static int da9034_touch_remove(struct platform_device *pdev) |
| 365 | { | 365 | { |
| 366 | struct da9034_touch *touch = platform_get_drvdata(pdev); | 366 | struct da9034_touch *touch = platform_get_drvdata(pdev); |
| 367 | 367 | ||
diff --git a/drivers/input/touchscreen/da9052_tsi.c b/drivers/input/touchscreen/da9052_tsi.c index 8a493b962db..303966ffe1e 100644 --- a/drivers/input/touchscreen/da9052_tsi.c +++ b/drivers/input/touchscreen/da9052_tsi.c | |||
| @@ -336,7 +336,7 @@ err_free_mem: | |||
| 336 | return error; | 336 | return error; |
| 337 | } | 337 | } |
| 338 | 338 | ||
| 339 | static int __devexit da9052_ts_remove(struct platform_device *pdev) | 339 | static int da9052_ts_remove(struct platform_device *pdev) |
| 340 | { | 340 | { |
| 341 | struct da9052_tsi *tsi = platform_get_drvdata(pdev); | 341 | struct da9052_tsi *tsi = platform_get_drvdata(pdev); |
| 342 | 342 | ||
diff --git a/drivers/input/touchscreen/edt-ft5x06.c b/drivers/input/touchscreen/edt-ft5x06.c index 677e78804b7..a9170157b44 100644 --- a/drivers/input/touchscreen/edt-ft5x06.c +++ b/drivers/input/touchscreen/edt-ft5x06.c | |||
| @@ -592,7 +592,7 @@ edt_ft5x06_ts_prepare_debugfs(struct edt_ft5x06_ts_data *tsdata, | |||
| 592 | tsdata->debug_dir, tsdata, &debugfs_raw_data_fops); | 592 | tsdata->debug_dir, tsdata, &debugfs_raw_data_fops); |
| 593 | } | 593 | } |
| 594 | 594 | ||
| 595 | static void __devexit | 595 | static void |
| 596 | edt_ft5x06_ts_teardown_debugfs(struct edt_ft5x06_ts_data *tsdata) | 596 | edt_ft5x06_ts_teardown_debugfs(struct edt_ft5x06_ts_data *tsdata) |
| 597 | { | 597 | { |
| 598 | if (tsdata->debug_dir) | 598 | if (tsdata->debug_dir) |
| @@ -822,7 +822,7 @@ err_free_mem: | |||
| 822 | return error; | 822 | return error; |
| 823 | } | 823 | } |
| 824 | 824 | ||
| 825 | static int __devexit edt_ft5x06_ts_remove(struct i2c_client *client) | 825 | static int edt_ft5x06_ts_remove(struct i2c_client *client) |
| 826 | { | 826 | { |
| 827 | const struct edt_ft5x06_platform_data *pdata = | 827 | const struct edt_ft5x06_platform_data *pdata = |
| 828 | dev_get_platdata(&client->dev); | 828 | dev_get_platdata(&client->dev); |
diff --git a/drivers/input/touchscreen/eeti_ts.c b/drivers/input/touchscreen/eeti_ts.c index a65709959fa..55255a94007 100644 --- a/drivers/input/touchscreen/eeti_ts.c +++ b/drivers/input/touchscreen/eeti_ts.c | |||
| @@ -248,7 +248,7 @@ err0: | |||
| 248 | return err; | 248 | return err; |
| 249 | } | 249 | } |
| 250 | 250 | ||
| 251 | static int __devexit eeti_ts_remove(struct i2c_client *client) | 251 | static int eeti_ts_remove(struct i2c_client *client) |
| 252 | { | 252 | { |
| 253 | struct eeti_ts_priv *priv = i2c_get_clientdata(client); | 253 | struct eeti_ts_priv *priv = i2c_get_clientdata(client); |
| 254 | 254 | ||
diff --git a/drivers/input/touchscreen/egalax_ts.c b/drivers/input/touchscreen/egalax_ts.c index f5e09ca1ffe..17c9097f3b5 100644 --- a/drivers/input/touchscreen/egalax_ts.c +++ b/drivers/input/touchscreen/egalax_ts.c | |||
| @@ -246,7 +246,7 @@ err_free_ts: | |||
| 246 | return error; | 246 | return error; |
| 247 | } | 247 | } |
| 248 | 248 | ||
| 249 | static __devexit int egalax_ts_remove(struct i2c_client *client) | 249 | static int egalax_ts_remove(struct i2c_client *client) |
| 250 | { | 250 | { |
| 251 | struct egalax_ts *ts = i2c_get_clientdata(client); | 251 | struct egalax_ts *ts = i2c_get_clientdata(client); |
| 252 | 252 | ||
diff --git a/drivers/input/touchscreen/htcpen.c b/drivers/input/touchscreen/htcpen.c index 32a451c89d5..6c4fb843695 100644 --- a/drivers/input/touchscreen/htcpen.c +++ b/drivers/input/touchscreen/htcpen.c | |||
| @@ -174,7 +174,7 @@ static int htcpen_isa_probe(struct device *dev, unsigned int id) | |||
| 174 | return err; | 174 | return err; |
| 175 | } | 175 | } |
| 176 | 176 | ||
| 177 | static int __devexit htcpen_isa_remove(struct device *dev, unsigned int id) | 177 | static int htcpen_isa_remove(struct device *dev, unsigned int id) |
| 178 | { | 178 | { |
| 179 | struct input_dev *htcpen_dev = dev_get_drvdata(dev); | 179 | struct input_dev *htcpen_dev = dev_get_drvdata(dev); |
| 180 | 180 | ||
diff --git a/drivers/input/touchscreen/ili210x.c b/drivers/input/touchscreen/ili210x.c index 7e6221c9ea7..1418bdda61b 100644 --- a/drivers/input/touchscreen/ili210x.c +++ b/drivers/input/touchscreen/ili210x.c | |||
| @@ -298,7 +298,7 @@ err_free_mem: | |||
| 298 | return error; | 298 | return error; |
| 299 | } | 299 | } |
| 300 | 300 | ||
| 301 | static int __devexit ili210x_i2c_remove(struct i2c_client *client) | 301 | static int ili210x_i2c_remove(struct i2c_client *client) |
| 302 | { | 302 | { |
| 303 | struct ili210x *priv = i2c_get_clientdata(client); | 303 | struct ili210x *priv = i2c_get_clientdata(client); |
| 304 | 304 | ||
diff --git a/drivers/input/touchscreen/intel-mid-touch.c b/drivers/input/touchscreen/intel-mid-touch.c index e413f3344ed..465db5dba8b 100644 --- a/drivers/input/touchscreen/intel-mid-touch.c +++ b/drivers/input/touchscreen/intel-mid-touch.c | |||
| @@ -643,7 +643,7 @@ err_free_mem: | |||
| 643 | return err; | 643 | return err; |
| 644 | } | 644 | } |
| 645 | 645 | ||
| 646 | static int __devexit mrstouch_remove(struct platform_device *pdev) | 646 | static int mrstouch_remove(struct platform_device *pdev) |
| 647 | { | 647 | { |
| 648 | struct mrstouch_dev *tsdev = platform_get_drvdata(pdev); | 648 | struct mrstouch_dev *tsdev = platform_get_drvdata(pdev); |
| 649 | 649 | ||
diff --git a/drivers/input/touchscreen/jornada720_ts.c b/drivers/input/touchscreen/jornada720_ts.c index 7ef90def6b0..282d7c7ad2f 100644 --- a/drivers/input/touchscreen/jornada720_ts.c +++ b/drivers/input/touchscreen/jornada720_ts.c | |||
| @@ -151,7 +151,7 @@ static int jornada720_ts_probe(struct platform_device *pdev) | |||
| 151 | return error; | 151 | return error; |
| 152 | } | 152 | } |
| 153 | 153 | ||
| 154 | static int __devexit jornada720_ts_remove(struct platform_device *pdev) | 154 | static int jornada720_ts_remove(struct platform_device *pdev) |
| 155 | { | 155 | { |
| 156 | struct jornada_ts *jornada_ts = platform_get_drvdata(pdev); | 156 | struct jornada_ts *jornada_ts = platform_get_drvdata(pdev); |
| 157 | 157 | ||
diff --git a/drivers/input/touchscreen/lpc32xx_ts.c b/drivers/input/touchscreen/lpc32xx_ts.c index 39d50b7d470..9101ee529c9 100644 --- a/drivers/input/touchscreen/lpc32xx_ts.c +++ b/drivers/input/touchscreen/lpc32xx_ts.c | |||
| @@ -309,7 +309,7 @@ err_free_mem: | |||
| 309 | return error; | 309 | return error; |
| 310 | } | 310 | } |
| 311 | 311 | ||
| 312 | static int __devexit lpc32xx_ts_remove(struct platform_device *pdev) | 312 | static int lpc32xx_ts_remove(struct platform_device *pdev) |
| 313 | { | 313 | { |
| 314 | struct lpc32xx_tsc *tsc = platform_get_drvdata(pdev); | 314 | struct lpc32xx_tsc *tsc = platform_get_drvdata(pdev); |
| 315 | struct resource *res; | 315 | struct resource *res; |
diff --git a/drivers/input/touchscreen/max11801_ts.c b/drivers/input/touchscreen/max11801_ts.c index ac06db6a7b0..00bc6caa27f 100644 --- a/drivers/input/touchscreen/max11801_ts.c +++ b/drivers/input/touchscreen/max11801_ts.c | |||
| @@ -228,7 +228,7 @@ err_free_mem: | |||
| 228 | return error; | 228 | return error; |
| 229 | } | 229 | } |
| 230 | 230 | ||
| 231 | static __devexit int max11801_ts_remove(struct i2c_client *client) | 231 | static int max11801_ts_remove(struct i2c_client *client) |
| 232 | { | 232 | { |
| 233 | struct max11801_data *data = i2c_get_clientdata(client); | 233 | struct max11801_data *data = i2c_get_clientdata(client); |
| 234 | 234 | ||
diff --git a/drivers/input/touchscreen/mc13783_ts.c b/drivers/input/touchscreen/mc13783_ts.c index 5c18c5cb9f7..02103b6abb3 100644 --- a/drivers/input/touchscreen/mc13783_ts.c +++ b/drivers/input/touchscreen/mc13783_ts.c | |||
| @@ -229,7 +229,7 @@ err_free_mem: | |||
| 229 | return ret; | 229 | return ret; |
| 230 | } | 230 | } |
| 231 | 231 | ||
| 232 | static int __devexit mc13783_ts_remove(struct platform_device *pdev) | 232 | static int mc13783_ts_remove(struct platform_device *pdev) |
| 233 | { | 233 | { |
| 234 | struct mc13783_ts_priv *priv = platform_get_drvdata(pdev); | 234 | struct mc13783_ts_priv *priv = platform_get_drvdata(pdev); |
| 235 | 235 | ||
diff --git a/drivers/input/touchscreen/mcs5000_ts.c b/drivers/input/touchscreen/mcs5000_ts.c index c9da87bd257..f9f4e0c56ed 100644 --- a/drivers/input/touchscreen/mcs5000_ts.c +++ b/drivers/input/touchscreen/mcs5000_ts.c | |||
| @@ -249,7 +249,7 @@ err_free_mem: | |||
| 249 | return ret; | 249 | return ret; |
| 250 | } | 250 | } |
| 251 | 251 | ||
| 252 | static int __devexit mcs5000_ts_remove(struct i2c_client *client) | 252 | static int mcs5000_ts_remove(struct i2c_client *client) |
| 253 | { | 253 | { |
| 254 | struct mcs5000_ts_data *data = i2c_get_clientdata(client); | 254 | struct mcs5000_ts_data *data = i2c_get_clientdata(client); |
| 255 | 255 | ||
diff --git a/drivers/input/touchscreen/mms114.c b/drivers/input/touchscreen/mms114.c index 633737e14e4..98841d8aa63 100644 --- a/drivers/input/touchscreen/mms114.c +++ b/drivers/input/touchscreen/mms114.c | |||
| @@ -508,7 +508,7 @@ err_free_mem: | |||
| 508 | return error; | 508 | return error; |
| 509 | } | 509 | } |
| 510 | 510 | ||
| 511 | static int __devexit mms114_remove(struct i2c_client *client) | 511 | static int mms114_remove(struct i2c_client *client) |
| 512 | { | 512 | { |
| 513 | struct mms114_data *data = i2c_get_clientdata(client); | 513 | struct mms114_data *data = i2c_get_clientdata(client); |
| 514 | 514 | ||
diff --git a/drivers/input/touchscreen/pcap_ts.c b/drivers/input/touchscreen/pcap_ts.c index 900dc78be08..f22e04dd4e1 100644 --- a/drivers/input/touchscreen/pcap_ts.c +++ b/drivers/input/touchscreen/pcap_ts.c | |||
| @@ -202,7 +202,7 @@ fail: | |||
| 202 | return err; | 202 | return err; |
| 203 | } | 203 | } |
| 204 | 204 | ||
| 205 | static int __devexit pcap_ts_remove(struct platform_device *pdev) | 205 | static int pcap_ts_remove(struct platform_device *pdev) |
| 206 | { | 206 | { |
| 207 | struct pcap_ts *pcap_ts = platform_get_drvdata(pdev); | 207 | struct pcap_ts *pcap_ts = platform_get_drvdata(pdev); |
| 208 | 208 | ||
diff --git a/drivers/input/touchscreen/pixcir_i2c_ts.c b/drivers/input/touchscreen/pixcir_i2c_ts.c index cffea4c368a..6cc6b36663f 100644 --- a/drivers/input/touchscreen/pixcir_i2c_ts.c +++ b/drivers/input/touchscreen/pixcir_i2c_ts.c | |||
| @@ -189,7 +189,7 @@ err_free_mem: | |||
| 189 | return error; | 189 | return error; |
| 190 | } | 190 | } |
| 191 | 191 | ||
| 192 | static int __devexit pixcir_i2c_ts_remove(struct i2c_client *client) | 192 | static int pixcir_i2c_ts_remove(struct i2c_client *client) |
| 193 | { | 193 | { |
| 194 | struct pixcir_i2c_ts_data *tsdata = i2c_get_clientdata(client); | 194 | struct pixcir_i2c_ts_data *tsdata = i2c_get_clientdata(client); |
| 195 | 195 | ||
diff --git a/drivers/input/touchscreen/s3c2410_ts.c b/drivers/input/touchscreen/s3c2410_ts.c index 8f2f22b612a..b061af2c837 100644 --- a/drivers/input/touchscreen/s3c2410_ts.c +++ b/drivers/input/touchscreen/s3c2410_ts.c | |||
| @@ -365,7 +365,7 @@ static int s3c2410ts_probe(struct platform_device *pdev) | |||
| 365 | * | 365 | * |
| 366 | * Free up our state ready to be removed. | 366 | * Free up our state ready to be removed. |
| 367 | */ | 367 | */ |
| 368 | static int __devexit s3c2410ts_remove(struct platform_device *pdev) | 368 | static int s3c2410ts_remove(struct platform_device *pdev) |
| 369 | { | 369 | { |
| 370 | free_irq(ts.irq_tc, ts.input); | 370 | free_irq(ts.irq_tc, ts.input); |
| 371 | del_timer_sync(&touch_timer); | 371 | del_timer_sync(&touch_timer); |
diff --git a/drivers/input/touchscreen/st1232.c b/drivers/input/touchscreen/st1232.c index 2a71dfde301..d9d05e22242 100644 --- a/drivers/input/touchscreen/st1232.c +++ b/drivers/input/touchscreen/st1232.c | |||
| @@ -206,7 +206,7 @@ err_free_mem: | |||
| 206 | return error; | 206 | return error; |
| 207 | } | 207 | } |
| 208 | 208 | ||
| 209 | static int __devexit st1232_ts_remove(struct i2c_client *client) | 209 | static int st1232_ts_remove(struct i2c_client *client) |
| 210 | { | 210 | { |
| 211 | struct st1232_ts_data *ts = i2c_get_clientdata(client); | 211 | struct st1232_ts_data *ts = i2c_get_clientdata(client); |
| 212 | 212 | ||
diff --git a/drivers/input/touchscreen/stmpe-ts.c b/drivers/input/touchscreen/stmpe-ts.c index 011b686798d..84d884b4ec3 100644 --- a/drivers/input/touchscreen/stmpe-ts.c +++ b/drivers/input/touchscreen/stmpe-ts.c | |||
| @@ -371,7 +371,7 @@ static int stmpe_input_probe(struct platform_device *pdev) | |||
| 371 | return 0; | 371 | return 0; |
| 372 | } | 372 | } |
| 373 | 373 | ||
| 374 | static int __devexit stmpe_ts_remove(struct platform_device *pdev) | 374 | static int stmpe_ts_remove(struct platform_device *pdev) |
| 375 | { | 375 | { |
| 376 | struct stmpe_touch *ts = platform_get_drvdata(pdev); | 376 | struct stmpe_touch *ts = platform_get_drvdata(pdev); |
| 377 | 377 | ||
diff --git a/drivers/input/touchscreen/tnetv107x-ts.c b/drivers/input/touchscreen/tnetv107x-ts.c index 63f75ebb328..acfb87607b8 100644 --- a/drivers/input/touchscreen/tnetv107x-ts.c +++ b/drivers/input/touchscreen/tnetv107x-ts.c | |||
| @@ -357,7 +357,7 @@ error_res: | |||
| 357 | return error; | 357 | return error; |
| 358 | } | 358 | } |
| 359 | 359 | ||
| 360 | static int __devexit tsc_remove(struct platform_device *pdev) | 360 | static int tsc_remove(struct platform_device *pdev) |
| 361 | { | 361 | { |
| 362 | struct tsc_data *ts = platform_get_drvdata(pdev); | 362 | struct tsc_data *ts = platform_get_drvdata(pdev); |
| 363 | 363 | ||
diff --git a/drivers/input/touchscreen/tps6507x-ts.c b/drivers/input/touchscreen/tps6507x-ts.c index e1ec9e074ed..820a066c3b8 100644 --- a/drivers/input/touchscreen/tps6507x-ts.c +++ b/drivers/input/touchscreen/tps6507x-ts.c | |||
| @@ -345,7 +345,7 @@ err0: | |||
| 345 | return error; | 345 | return error; |
| 346 | } | 346 | } |
| 347 | 347 | ||
| 348 | static int __devexit tps6507x_ts_remove(struct platform_device *pdev) | 348 | static int tps6507x_ts_remove(struct platform_device *pdev) |
| 349 | { | 349 | { |
| 350 | struct tps6507x_dev *tps6507x_dev = platform_get_drvdata(pdev); | 350 | struct tps6507x_dev *tps6507x_dev = platform_get_drvdata(pdev); |
| 351 | struct tps6507x_ts *tsc = tps6507x_dev->ts; | 351 | struct tps6507x_ts *tsc = tps6507x_dev->ts; |
diff --git a/drivers/input/touchscreen/tsc2005.c b/drivers/input/touchscreen/tsc2005.c index 20889305d46..9c0cdc7ea44 100644 --- a/drivers/input/touchscreen/tsc2005.c +++ b/drivers/input/touchscreen/tsc2005.c | |||
| @@ -686,7 +686,7 @@ err_free_mem: | |||
| 686 | return error; | 686 | return error; |
| 687 | } | 687 | } |
| 688 | 688 | ||
| 689 | static int __devexit tsc2005_remove(struct spi_device *spi) | 689 | static int tsc2005_remove(struct spi_device *spi) |
| 690 | { | 690 | { |
| 691 | struct tsc2005 *ts = spi_get_drvdata(spi); | 691 | struct tsc2005 *ts = spi_get_drvdata(spi); |
| 692 | 692 | ||
diff --git a/drivers/input/touchscreen/tsc2007.c b/drivers/input/touchscreen/tsc2007.c index 47b41eb0e38..0b67ba476b4 100644 --- a/drivers/input/touchscreen/tsc2007.c +++ b/drivers/input/touchscreen/tsc2007.c | |||
| @@ -366,7 +366,7 @@ static int 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; |
diff --git a/drivers/input/touchscreen/ucb1400_ts.c b/drivers/input/touchscreen/ucb1400_ts.c index 518363d01c2..1271f97b407 100644 --- a/drivers/input/touchscreen/ucb1400_ts.c +++ b/drivers/input/touchscreen/ucb1400_ts.c | |||
| @@ -397,7 +397,7 @@ err: | |||
| 397 | return error; | 397 | return error; |
| 398 | } | 398 | } |
| 399 | 399 | ||
| 400 | static int __devexit ucb1400_ts_remove(struct platform_device *pdev) | 400 | static int ucb1400_ts_remove(struct platform_device *pdev) |
| 401 | { | 401 | { |
| 402 | struct ucb1400_ts *ucb = pdev->dev.platform_data; | 402 | struct ucb1400_ts *ucb = pdev->dev.platform_data; |
| 403 | 403 | ||
diff --git a/drivers/input/touchscreen/w90p910_ts.c b/drivers/input/touchscreen/w90p910_ts.c index f0378a9dc93..d2ef8f05c66 100644 --- a/drivers/input/touchscreen/w90p910_ts.c +++ b/drivers/input/touchscreen/w90p910_ts.c | |||
| @@ -301,7 +301,7 @@ fail1: input_free_device(input_dev); | |||
| 301 | return err; | 301 | return err; |
| 302 | } | 302 | } |
| 303 | 303 | ||
| 304 | static int __devexit w90x900ts_remove(struct platform_device *pdev) | 304 | static int w90x900ts_remove(struct platform_device *pdev) |
| 305 | { | 305 | { |
| 306 | struct w90p910_ts *w90p910_ts = platform_get_drvdata(pdev); | 306 | struct w90p910_ts *w90p910_ts = platform_get_drvdata(pdev); |
| 307 | struct resource *res; | 307 | struct resource *res; |
diff --git a/drivers/input/touchscreen/wacom_i2c.c b/drivers/input/touchscreen/wacom_i2c.c index bb02ccd5100..bf0d07620ba 100644 --- a/drivers/input/touchscreen/wacom_i2c.c +++ b/drivers/input/touchscreen/wacom_i2c.c | |||
| @@ -225,7 +225,7 @@ err_free_mem: | |||
| 225 | return error; | 225 | return error; |
| 226 | } | 226 | } |
| 227 | 227 | ||
| 228 | static int __devexit wacom_i2c_remove(struct i2c_client *client) | 228 | static int wacom_i2c_remove(struct i2c_client *client) |
| 229 | { | 229 | { |
| 230 | struct wacom_i2c *wac_i2c = i2c_get_clientdata(client); | 230 | struct wacom_i2c *wac_i2c = i2c_get_clientdata(client); |
| 231 | 231 | ||
diff --git a/drivers/input/touchscreen/wm831x-ts.c b/drivers/input/touchscreen/wm831x-ts.c index 28d81256ec6..f88fab56178 100644 --- a/drivers/input/touchscreen/wm831x-ts.c +++ b/drivers/input/touchscreen/wm831x-ts.c | |||
| @@ -381,7 +381,7 @@ err_alloc: | |||
| 381 | return error; | 381 | return error; |
| 382 | } | 382 | } |
| 383 | 383 | ||
| 384 | static __devexit int wm831x_ts_remove(struct platform_device *pdev) | 384 | static int wm831x_ts_remove(struct platform_device *pdev) |
| 385 | { | 385 | { |
| 386 | struct wm831x_ts *wm831x_ts = platform_get_drvdata(pdev); | 386 | struct wm831x_ts *wm831x_ts = platform_get_drvdata(pdev); |
| 387 | 387 | ||
