]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - drivers/input/serio/ct82c710.c
Merge tag 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[karo-tx-linux.git] / drivers / input / serio / ct82c710.c
index 852816567241cf5f0f08cc72c55bbb38b854ab8b..cfe549d4eaa54c9135a5d92ff8eb497ec3253639 100644 (file)
@@ -175,7 +175,7 @@ static int __init ct82c710_detect(void)
        return 0;
 }
 
-static int __devinit ct82c710_probe(struct platform_device *dev)
+static int ct82c710_probe(struct platform_device *dev)
 {
        ct82c710_port = kzalloc(sizeof(struct serio), GFP_KERNEL);
        if (!ct82c710_port)
@@ -199,7 +199,7 @@ static int __devinit ct82c710_probe(struct platform_device *dev)
        return 0;
 }
 
-static int __devexit ct82c710_remove(struct platform_device *dev)
+static int ct82c710_remove(struct platform_device *dev)
 {
        serio_unregister_port(ct82c710_port);
 
@@ -212,7 +212,7 @@ static struct platform_driver ct82c710_driver = {
                .owner  = THIS_MODULE,
        },
        .probe          = ct82c710_probe,
-       .remove         = __devexit_p(ct82c710_remove),
+       .remove         = ct82c710_remove,
 };