summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2009-06-04 10:04:11 +0000
committerFlorian Fainelli <florian@openwrt.org>2009-06-04 10:04:11 +0000
commit50936e1aa5218949161a9c7791367cfe08fc40cb (patch)
treebcff8109cc18fcd342a8abf052c327e995d72114 /target
parent116a53a15433ecf1bccfe991e6a157695601e95d (diff)
downloadmaster-31e0f0ae-50936e1aa5218949161a9c7791367cfe08fc40cb.tar.gz
master-31e0f0ae-50936e1aa5218949161a9c7791367cfe08fc40cb.tar.bz2
master-31e0f0ae-50936e1aa5218949161a9c7791367cfe08fc40cb.zip
fix pcmcia device removal
SVN-Revision: 16334
Diffstat (limited to 'target')
-rw-r--r--target/linux/brcm63xx/files/drivers/pcmcia/bcm63xx_pcmcia.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/files/drivers/pcmcia/bcm63xx_pcmcia.c b/target/linux/brcm63xx/files/drivers/pcmcia/bcm63xx_pcmcia.c
index 0222b2094f..52b99d5b80 100644
--- a/target/linux/brcm63xx/files/drivers/pcmcia/bcm63xx_pcmcia.c
+++ b/target/linux/brcm63xx/files/drivers/pcmcia/bcm63xx_pcmcia.c
@@ -455,6 +455,7 @@ static int bcm63xx_drv_pcmcia_remove(struct platform_device *pdev)
res = skt->reg_res;
release_mem_region(res->start, res->end - res->start + 1);
gpio_free(skt->pd->ready_gpio);
+ platform_set_drvdata(pdev, NULL);
kfree(skt);
return 0;
}