diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:20:26 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 15:28:09 -0500 |
commit | 0433c14356702e296f474f77ebd42f0a9d9a5487 (patch) | |
tree | c51ea146be97a95cd8d16f6d5bf9bf7678b4adad /drivers/mmc/host/mmc_spi.c | |
parent | 77f37917a6f2bd8635b553178bb34bdd80f08e40 (diff) |
mmc: 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>
Cc: Chris Ball <cjb@laptop.org>
Cc: "Michał Mirosław" <mirq-linux@rere.qmqm.pl>
Cc: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Cc: Venkatraman S <svenkatr@ti.com>
Cc: Ian Molton <ian@mnementh.co.uk>
Cc: Bruce Chang <brucechang@via.com.tw>
Cc: Harald Welte <HaraldWelte@viatech.com>
Cc: Pierre Ossman <pierre@ossman.eu>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/mmc/host/mmc_spi.c')
-rw-r--r-- | drivers/mmc/host/mmc_spi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/mmc_spi.c b/drivers/mmc/host/mmc_spi.c index a600eabbd6c3..f7df7982ba11 100644 --- a/drivers/mmc/host/mmc_spi.c +++ b/drivers/mmc/host/mmc_spi.c | |||
@@ -1529,7 +1529,7 @@ static struct spi_driver mmc_spi_driver = { | |||
1529 | .of_match_table = mmc_spi_of_match_table, | 1529 | .of_match_table = mmc_spi_of_match_table, |
1530 | }, | 1530 | }, |
1531 | .probe = mmc_spi_probe, | 1531 | .probe = mmc_spi_probe, |
1532 | .remove = __devexit_p(mmc_spi_remove), | 1532 | .remove = mmc_spi_remove, |
1533 | }; | 1533 | }; |
1534 | 1534 | ||
1535 | module_spi_driver(mmc_spi_driver); | 1535 | module_spi_driver(mmc_spi_driver); |