diff options
author | Uwe Kleine-König <[email protected]> | 2010-03-05 13:44:21 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2010-03-06 11:26:47 -0800 |
commit | b51e8293182764ca7b1a1bdb28a5c5dc60152c76 (patch) | |
tree | e6605d80b8948291acc7f754a5641ebe87d48896 | |
parent | b4877d2b3678f4455f2b8b0211868ac57c3b1ff6 (diff) |
rtc-pcf2123: move pcf2123_remove to .devexit.text
The function pcf2123_remove is used only wrapped by __devexit_p so define
it using __devexit.
Signed-off-by: Uwe Kleine-König <[email protected]>
Signed-off-by: Alessandro Zummo <[email protected]>
Cc: Christian Pellegrin <[email protected]>
Cc: Chris Verges <[email protected]>
Cc: Paul Gortmaker <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | drivers/rtc/rtc-pcf2123.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-pcf2123.c b/drivers/rtc/rtc-pcf2123.c index e75df9d50e27..2ceb365533b2 100644 --- a/drivers/rtc/rtc-pcf2123.c +++ b/drivers/rtc/rtc-pcf2123.c @@ -315,7 +315,7 @@ kfree_exit: return ret; } -static int pcf2123_remove(struct spi_device *spi) +static int __devexit pcf2123_remove(struct spi_device *spi) { struct pcf2123_plat_data *pdata = spi->dev.platform_data; int i; |