diff options
Diffstat (limited to 'drivers/input/serio/rpckbd.c')
-rw-r--r-- | drivers/input/serio/rpckbd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/serio/rpckbd.c b/drivers/input/serio/rpckbd.c index 2af5df6a8fba..567566ae0dae 100644 --- a/drivers/input/serio/rpckbd.c +++ b/drivers/input/serio/rpckbd.c | |||
@@ -114,7 +114,7 @@ static void rpckbd_close(struct serio *port) | |||
114 | * Allocate and initialize serio structure for subsequent registration | 114 | * Allocate and initialize serio structure for subsequent registration |
115 | * with serio core. | 115 | * with serio core. |
116 | */ | 116 | */ |
117 | static int __devinit rpckbd_probe(struct platform_device *dev) | 117 | static int rpckbd_probe(struct platform_device *dev) |
118 | { | 118 | { |
119 | struct rpckbd_data *rpckbd; | 119 | struct rpckbd_data *rpckbd; |
120 | struct serio *serio; | 120 | struct serio *serio; |
@@ -153,7 +153,7 @@ static int __devinit rpckbd_probe(struct platform_device *dev) | |||
153 | return 0; | 153 | return 0; |
154 | } | 154 | } |
155 | 155 | ||
156 | static int __devexit rpckbd_remove(struct platform_device *dev) | 156 | static int rpckbd_remove(struct platform_device *dev) |
157 | { | 157 | { |
158 | struct serio *serio = platform_get_drvdata(dev); | 158 | struct serio *serio = platform_get_drvdata(dev); |
159 | struct rpckbd_data *rpckbd = serio->port_data; | 159 | struct rpckbd_data *rpckbd = serio->port_data; |
@@ -166,7 +166,7 @@ static int __devexit rpckbd_remove(struct platform_device *dev) | |||
166 | 166 | ||
167 | static struct platform_driver rpckbd_driver = { | 167 | static struct platform_driver rpckbd_driver = { |
168 | .probe = rpckbd_probe, | 168 | .probe = rpckbd_probe, |
169 | .remove = __devexit_p(rpckbd_remove), | 169 | .remove = rpckbd_remove, |
170 | .driver = { | 170 | .driver = { |
171 | .name = "kart", | 171 | .name = "kart", |
172 | .owner = THIS_MODULE, | 172 | .owner = THIS_MODULE, |