]> git.karo-electronics.de Git - linux-beck.git/commitdiff
uio: remove use of __devexit_p
authorBill Pemberton <wfp5p@virginia.edu>
Mon, 19 Nov 2012 18:21:07 +0000 (13:21 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 21 Nov 2012 21:41:34 +0000 (13:41 -0800)
CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: "Hans J. Koch" <hjk@hansjkoch.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/uio/uio_pruss.c

index 33a7a273b4537bd31d2898a572da62f4462b4fd7..d877d643433c04a16c018f1d1da05d47a2e182e2 100644 (file)
@@ -220,7 +220,7 @@ static int __devexit pruss_remove(struct platform_device *dev)
 
 static struct platform_driver pruss_driver = {
        .probe = pruss_probe,
-       .remove = __devexit_p(pruss_remove),
+       .remove = pruss_remove,
        .driver = {
                   .name = DRV_NAME,
                   .owner = THIS_MODULE,