Commit 9fea9291 authored by Dmitry Torokhov's avatar Dmitry Torokhov

Input: usb1400_ts - add __devinit/__devexit section annotations

Add __devinit/__devexit sections annotations so parts of code could be
discarded after completing driver initialization.
Acked-by: default avatarMarek Vasut <marek.vasut@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 8028e938
...@@ -299,7 +299,7 @@ static void ucb1400_ts_close(struct input_dev *idev) ...@@ -299,7 +299,7 @@ static void ucb1400_ts_close(struct input_dev *idev)
* Try to probe our interrupt, rather than relying on lots of * Try to probe our interrupt, rather than relying on lots of
* hard-coded machine dependencies. * hard-coded machine dependencies.
*/ */
static int ucb1400_ts_detect_irq(struct ucb1400_ts *ucb) static int __devinit ucb1400_ts_detect_irq(struct ucb1400_ts *ucb)
{ {
unsigned long mask, timeout; unsigned long mask, timeout;
...@@ -342,7 +342,7 @@ static int ucb1400_ts_detect_irq(struct ucb1400_ts *ucb) ...@@ -342,7 +342,7 @@ static int ucb1400_ts_detect_irq(struct ucb1400_ts *ucb)
return 0; return 0;
} }
static int ucb1400_ts_probe(struct platform_device *dev) static int __devinit ucb1400_ts_probe(struct platform_device *dev)
{ {
int error, x_res, y_res; int error, x_res, y_res;
u16 fcsr; u16 fcsr;
...@@ -416,15 +416,15 @@ static int ucb1400_ts_probe(struct platform_device *dev) ...@@ -416,15 +416,15 @@ static int ucb1400_ts_probe(struct platform_device *dev)
input_free_device(ucb->ts_idev); input_free_device(ucb->ts_idev);
err: err:
return error; return error;
} }
static int ucb1400_ts_remove(struct platform_device *dev) static int __devexit ucb1400_ts_remove(struct platform_device *dev)
{ {
struct ucb1400_ts *ucb = dev->dev.platform_data; struct ucb1400_ts *ucb = dev->dev.platform_data;
free_irq(ucb->irq, ucb); free_irq(ucb->irq, ucb);
input_unregister_device(ucb->ts_idev); input_unregister_device(ucb->ts_idev);
return 0; return 0;
} }
...@@ -450,7 +450,7 @@ static SIMPLE_DEV_PM_OPS(ucb1400_ts_pm_ops, NULL, ucb1400_ts_resume); ...@@ -450,7 +450,7 @@ static SIMPLE_DEV_PM_OPS(ucb1400_ts_pm_ops, NULL, ucb1400_ts_resume);
static struct platform_driver ucb1400_ts_driver = { static struct platform_driver ucb1400_ts_driver = {
.probe = ucb1400_ts_probe, .probe = ucb1400_ts_probe,
.remove = ucb1400_ts_remove, .remove = __devexit_p(ucb1400_ts_remove),
.driver = { .driver = {
.name = "ucb1400_ts", .name = "ucb1400_ts",
.owner = THIS_MODULE, .owner = THIS_MODULE,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment