|
@@ -288,7 +288,7 @@ static int corgikbd_resume(struct platform_device *dev)
|
|
|
#define corgikbd_resume NULL
|
|
|
#endif
|
|
|
|
|
|
-static int __init corgikbd_probe(struct platform_device *pdev)
|
|
|
+static int __devinit corgikbd_probe(struct platform_device *pdev)
|
|
|
{
|
|
|
struct corgikbd *corgikbd;
|
|
|
struct input_dev *input_dev;
|
|
@@ -368,7 +368,7 @@ static int __init corgikbd_probe(struct platform_device *pdev)
|
|
|
return err;
|
|
|
}
|
|
|
|
|
|
-static int corgikbd_remove(struct platform_device *pdev)
|
|
|
+static int __devexit corgikbd_remove(struct platform_device *pdev)
|
|
|
{
|
|
|
int i;
|
|
|
struct corgikbd *corgikbd = platform_get_drvdata(pdev);
|
|
@@ -388,7 +388,7 @@ static int corgikbd_remove(struct platform_device *pdev)
|
|
|
|
|
|
static struct platform_driver corgikbd_driver = {
|
|
|
.probe = corgikbd_probe,
|
|
|
- .remove = corgikbd_remove,
|
|
|
+ .remove = __devexit_p(corgikbd_remove),
|
|
|
.suspend = corgikbd_suspend,
|
|
|
.resume = corgikbd_resume,
|
|
|
.driver = {
|
|
@@ -397,7 +397,7 @@ static struct platform_driver corgikbd_driver = {
|
|
|
},
|
|
|
};
|
|
|
|
|
|
-static int __devinit corgikbd_init(void)
|
|
|
+static int __init corgikbd_init(void)
|
|
|
{
|
|
|
return platform_driver_register(&corgikbd_driver);
|
|
|
}
|