diff options
author | Russell King - ARM Linux <linux@arm.linux.org.uk> | 2009-03-26 18:21:18 -0400 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2009-11-09 02:30:10 -0500 |
commit | be85458edce0f165cff62622f5e73b1d17b1e228 (patch) | |
tree | 01e3c995abab8f3533d2075d99f5a4a2d95e1948 /drivers/pcmcia/pxa2xx_base.c | |
parent | 097e296d6175881eba7244de7222de61e9569911 (diff) |
PCMCIA: soc_common: push socket removal down to SoC specific support
Mechanically transplant the removal code from soc_common into each
SoC specific base support file, thereby allowing
soc_common_drv_pcmcia_remove to be removed. No other changes.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/pcmcia/pxa2xx_base.c')
-rw-r--r-- | drivers/pcmcia/pxa2xx_base.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/pcmcia/pxa2xx_base.c b/drivers/pcmcia/pxa2xx_base.c index 0e35acb1366b..8a91106056fc 100644 --- a/drivers/pcmcia/pxa2xx_base.c +++ b/drivers/pcmcia/pxa2xx_base.c | |||
@@ -297,7 +297,16 @@ static int pxa2xx_drv_pcmcia_probe(struct platform_device *dev) | |||
297 | 297 | ||
298 | static int pxa2xx_drv_pcmcia_remove(struct platform_device *dev) | 298 | static int pxa2xx_drv_pcmcia_remove(struct platform_device *dev) |
299 | { | 299 | { |
300 | return soc_common_drv_pcmcia_remove(&dev->dev); | 300 | struct skt_dev_info *sinfo = platform_get_drvdata(dev); |
301 | int i; | ||
302 | |||
303 | platform_set_drvdata(dev, NULL); | ||
304 | |||
305 | for (i = 0; i < sinfo->nskt; i++) | ||
306 | soc_pcmcia_remove_one(&sinfo->skt[i]); | ||
307 | |||
308 | kfree(sinfo); | ||
309 | return 0; | ||
301 | } | 310 | } |
302 | 311 | ||
303 | static int pxa2xx_drv_pcmcia_suspend(struct device *dev) | 312 | static int pxa2xx_drv_pcmcia_suspend(struct device *dev) |