diff options
author | Arnd Bergmann <arnd@arndb.de> | 2012-02-21 17:23:34 +0000 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2012-02-21 17:23:34 +0000 |
commit | 3e343d7a387924b93c43aa0bd8d380a408a0eafe (patch) | |
tree | f62c38a37ac2a8baa80aad7455979d3f858ecc9c /drivers | |
parent | b01543dfe67bb1d191998e90d20534dc354de059 (diff) | |
parent | d87f614326a2cb4c3ead0a45e5468c7c3ca6b72f (diff) | |
download | linux-3e343d7a387924b93c43aa0bd8d380a408a0eafe.tar.gz linux-3e343d7a387924b93c43aa0bd8d380a408a0eafe.tar.bz2 linux-3e343d7a387924b93c43aa0bd8d380a408a0eafe.zip |
Merge branch 'fixes' of git://github.com/hzhuang1/linux into fixes
* 'fixes' of git://github.com/hzhuang1/linux:
pxa/hx4700: add platform device and I2C info for AK4641 codec
arch/arm/mach-pxa/: included linux/gpio.h twice
arch/arm/mach-mmp/: some files include some headers twice
ARM: pxa: fix error handling in pxa2xx_drv_pcmcia_probe
ARM: pxa: fix including linux/gpio.h twice
ARM: pxa: fix mixed declarations and code in sharpsl_pm
ARM: pxa: fix wrong parsing gpio event on spitz
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pcmcia/pxa2xx_base.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/drivers/pcmcia/pxa2xx_base.c b/drivers/pcmcia/pxa2xx_base.c index a87e2728b2c3..64d433ec4fc6 100644 --- a/drivers/pcmcia/pxa2xx_base.c +++ b/drivers/pcmcia/pxa2xx_base.c @@ -328,21 +328,15 @@ static int pxa2xx_drv_pcmcia_probe(struct platform_device *dev) goto err1; } - if (ret) { - while (--i >= 0) - soc_pcmcia_remove_one(&sinfo->skt[i]); - kfree(sinfo); - clk_put(clk); - } else { - pxa2xx_configure_sockets(&dev->dev); - dev_set_drvdata(&dev->dev, sinfo); - } + pxa2xx_configure_sockets(&dev->dev); + dev_set_drvdata(&dev->dev, sinfo); return 0; err1: while (--i >= 0) soc_pcmcia_remove_one(&sinfo->skt[i]); + clk_put(clk); kfree(sinfo); err0: return ret; |