diff options
Diffstat (limited to 'drivers/input/touchscreen/mc13783_ts.c')
| -rw-r--r-- | drivers/input/touchscreen/mc13783_ts.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/input/touchscreen/mc13783_ts.c b/drivers/input/touchscreen/mc13783_ts.c index 48dc5b0d26f1..02103b6abb39 100644 --- a/drivers/input/touchscreen/mc13783_ts.c +++ b/drivers/input/touchscreen/mc13783_ts.c @@ -229,7 +229,7 @@ err_free_mem:  	return ret;  } -static int __devexit mc13783_ts_remove(struct platform_device *pdev) +static int mc13783_ts_remove(struct platform_device *pdev)  {  	struct mc13783_ts_priv *priv = platform_get_drvdata(pdev); @@ -243,7 +243,7 @@ static int __devexit mc13783_ts_remove(struct platform_device *pdev)  }  static struct platform_driver mc13783_ts_driver = { -	.remove		= __devexit_p(mc13783_ts_remove), +	.remove		= mc13783_ts_remove,  	.driver		= {  		.owner	= THIS_MODULE,  		.name	= MC13783_TS_NAME, |