pcmcia: remove use of __devexit_p

CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Bill Pemberton
2012-11-19 13:20:38 -05:00
committed by Greg Kroah-Hartman
parent 13ee2b943c
commit 96364e3a5c
9 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -307,7 +307,7 @@ static struct platform_driver bfin_cf_driver = {
.owner = THIS_MODULE,
},
.probe = bfin_cf_probe,
.remove = __devexit_p(bfin_cf_remove),
.remove = bfin_cf_remove,
};
module_platform_driver(bfin_cf_driver);