diff options
Diffstat (limited to 'drivers/input/misc/pcspkr.c')
-rw-r--r-- | drivers/input/misc/pcspkr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/misc/pcspkr.c b/drivers/input/misc/pcspkr.c index b2484aa07f32..199db78acc4f 100644 --- a/drivers/input/misc/pcspkr.c +++ b/drivers/input/misc/pcspkr.c | |||
@@ -63,7 +63,7 @@ static int pcspkr_event(struct input_dev *dev, unsigned int type, unsigned int c | |||
63 | return 0; | 63 | return 0; |
64 | } | 64 | } |
65 | 65 | ||
66 | static int __devinit pcspkr_probe(struct platform_device *dev) | 66 | static int pcspkr_probe(struct platform_device *dev) |
67 | { | 67 | { |
68 | struct input_dev *pcspkr_dev; | 68 | struct input_dev *pcspkr_dev; |
69 | int err; | 69 | int err; |
@@ -95,7 +95,7 @@ static int __devinit pcspkr_probe(struct platform_device *dev) | |||
95 | return 0; | 95 | return 0; |
96 | } | 96 | } |
97 | 97 | ||
98 | static int __devexit pcspkr_remove(struct platform_device *dev) | 98 | static int pcspkr_remove(struct platform_device *dev) |
99 | { | 99 | { |
100 | struct input_dev *pcspkr_dev = platform_get_drvdata(dev); | 100 | struct input_dev *pcspkr_dev = platform_get_drvdata(dev); |
101 | 101 | ||
@@ -131,7 +131,7 @@ static struct platform_driver pcspkr_platform_driver = { | |||
131 | .pm = &pcspkr_pm_ops, | 131 | .pm = &pcspkr_pm_ops, |
132 | }, | 132 | }, |
133 | .probe = pcspkr_probe, | 133 | .probe = pcspkr_probe, |
134 | .remove = __devexit_p(pcspkr_remove), | 134 | .remove = pcspkr_remove, |
135 | .shutdown = pcspkr_shutdown, | 135 | .shutdown = pcspkr_shutdown, |
136 | }; | 136 | }; |
137 | module_platform_driver(pcspkr_platform_driver); | 137 | module_platform_driver(pcspkr_platform_driver); |