diff options
Diffstat (limited to 'drivers/input/misc/sgi_btns.c')
-rw-r--r-- | drivers/input/misc/sgi_btns.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/misc/sgi_btns.c b/drivers/input/misc/sgi_btns.c index 5d9fd5571199..ad6415ceaf5f 100644 --- a/drivers/input/misc/sgi_btns.c +++ b/drivers/input/misc/sgi_btns.c | |||
@@ -91,7 +91,7 @@ static void handle_buttons(struct input_polled_dev *dev) | |||
91 | } | 91 | } |
92 | } | 92 | } |
93 | 93 | ||
94 | static int __devinit sgi_buttons_probe(struct platform_device *pdev) | 94 | static int sgi_buttons_probe(struct platform_device *pdev) |
95 | { | 95 | { |
96 | struct buttons_dev *bdev; | 96 | struct buttons_dev *bdev; |
97 | struct input_polled_dev *poll_dev; | 97 | struct input_polled_dev *poll_dev; |
@@ -143,7 +143,7 @@ static int __devinit sgi_buttons_probe(struct platform_device *pdev) | |||
143 | return error; | 143 | return error; |
144 | } | 144 | } |
145 | 145 | ||
146 | static int __devexit sgi_buttons_remove(struct platform_device *pdev) | 146 | static int sgi_buttons_remove(struct platform_device *pdev) |
147 | { | 147 | { |
148 | struct device *dev = &pdev->dev; | 148 | struct device *dev = &pdev->dev; |
149 | struct buttons_dev *bdev = dev_get_drvdata(dev); | 149 | struct buttons_dev *bdev = dev_get_drvdata(dev); |
@@ -158,7 +158,7 @@ static int __devexit sgi_buttons_remove(struct platform_device *pdev) | |||
158 | 158 | ||
159 | static struct platform_driver sgi_buttons_driver = { | 159 | static struct platform_driver sgi_buttons_driver = { |
160 | .probe = sgi_buttons_probe, | 160 | .probe = sgi_buttons_probe, |
161 | .remove = __devexit_p(sgi_buttons_remove), | 161 | .remove = sgi_buttons_remove, |
162 | .driver = { | 162 | .driver = { |
163 | .name = "sgibtns", | 163 | .name = "sgibtns", |
164 | .owner = THIS_MODULE, | 164 | .owner = THIS_MODULE, |