diff options
Diffstat (limited to 'drivers/input/misc/pcf50633-input.c')
-rw-r--r-- | drivers/input/misc/pcf50633-input.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/misc/pcf50633-input.c b/drivers/input/misc/pcf50633-input.c index 53891de80b0e..73b13ebabe56 100644 --- a/drivers/input/misc/pcf50633-input.c +++ b/drivers/input/misc/pcf50633-input.c | |||
@@ -53,7 +53,7 @@ pcf50633_input_irq(int irq, void *data) | |||
53 | input_sync(input->input_dev); | 53 | input_sync(input->input_dev); |
54 | } | 54 | } |
55 | 55 | ||
56 | static int __devinit pcf50633_input_probe(struct platform_device *pdev) | 56 | static int pcf50633_input_probe(struct platform_device *pdev) |
57 | { | 57 | { |
58 | struct pcf50633_input *input; | 58 | struct pcf50633_input *input; |
59 | struct input_dev *input_dev; | 59 | struct input_dev *input_dev; |
@@ -93,7 +93,7 @@ static int __devinit pcf50633_input_probe(struct platform_device *pdev) | |||
93 | return 0; | 93 | return 0; |
94 | } | 94 | } |
95 | 95 | ||
96 | static int __devexit pcf50633_input_remove(struct platform_device *pdev) | 96 | static int pcf50633_input_remove(struct platform_device *pdev) |
97 | { | 97 | { |
98 | struct pcf50633_input *input = platform_get_drvdata(pdev); | 98 | struct pcf50633_input *input = platform_get_drvdata(pdev); |
99 | 99 | ||
@@ -111,7 +111,7 @@ static struct platform_driver pcf50633_input_driver = { | |||
111 | .name = "pcf50633-input", | 111 | .name = "pcf50633-input", |
112 | }, | 112 | }, |
113 | .probe = pcf50633_input_probe, | 113 | .probe = pcf50633_input_probe, |
114 | .remove = __devexit_p(pcf50633_input_remove), | 114 | .remove = pcf50633_input_remove, |
115 | }; | 115 | }; |
116 | module_platform_driver(pcf50633_input_driver); | 116 | module_platform_driver(pcf50633_input_driver); |
117 | 117 | ||