From: Tony Prisk Date: Sun, 13 Jan 2013 06:19:20 +0000 (+1300) Subject: mmc: vt8500: Remove erroneous __exitp in wmt_mci_driver X-Git-Tag: v3.9-rc1~78^2~49 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=893613b06f10578851d6bc36f0da33d248c93554;p=uclinux-h8%2Flinux.git 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 Signed-off-by: Chris Ball --- 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 = { static struct platform_driver wmt_mci_driver = { .probe = wmt_mci_probe, - .remove = __exit_p(wmt_mci_remove), + .remove = wmt_mci_remove, .driver = { .name = DRIVER_NAME, .owner = THIS_MODULE,