aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorTony Prisk <linux@prisktech.co.nz>2013-01-13 01:19:20 -0500
committerChris Ball <cjb@laptop.org>2013-02-24 14:36:56 -0500
commit893613b06f10578851d6bc36f0da33d248c93554 (patch)
tree63993e3b30ffb9dd448ff65be030486e4345f48d /drivers
parent9640639b09313af4cd37a465408643aba927808e (diff)
mmc: vt8500: Remove erroneous __exitp in wmt_mci_driver
With the __devinit/__devexit attributes having been removed, this __exitp attribute causes an unused function warning and should be removed as well. Signed-off-by: Tony Prisk <linux@prisktech.co.nz> Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mmc/host/wmt-sdmmc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/wmt-sdmmc.c b/drivers/mmc/host/wmt-sdmmc.c
index 154f0e8e931c..c6d001509e5a 100644
--- a/drivers/mmc/host/wmt-sdmmc.c
+++ b/drivers/mmc/host/wmt-sdmmc.c
@@ -1012,7 +1012,7 @@ static const struct dev_pm_ops wmt_mci_pm = {
1012 1012
1013static struct platform_driver wmt_mci_driver = { 1013static struct platform_driver wmt_mci_driver = {
1014 .probe = wmt_mci_probe, 1014 .probe = wmt_mci_probe,
1015 .remove = __exit_p(wmt_mci_remove), 1015 .remove = wmt_mci_remove,
1016 .driver = { 1016 .driver = {
1017 .name = DRIVER_NAME, 1017 .name = DRIVER_NAME,
1018 .owner = THIS_MODULE, 1018 .owner = THIS_MODULE,