[brcm63xx] add missing null entry in pcmcia driver
[openwrt.git] / target / linux / brcm63xx / files / drivers / pcmcia / bcm63xx_pcmcia.c
index 94a7762..0222b20 100644 (file)
@@ -409,9 +409,18 @@ static int bcm63xx_drv_pcmcia_probe(struct platform_device *pdev)
        val |= 3 << PCMCIA_C2_HOLD_SHIFT;
        pcmcia_writel(skt, val, PCMCIA_C2_REG);
 
+       /* request and setup ready gpio */
+       ret = gpio_request(skt->pd->ready_gpio, "bcm63xx_pcmcia");
+       if (ret < 0)
+               goto err;
+
+       ret = gpio_direction_input(skt->pd->ready_gpio);
+       if (ret < 0)
+               goto err_gpio;
+
        ret = pcmcia_register_socket(sock);
        if (ret)
-               goto err;
+               goto err_gpio;
 
        /* start polling socket */
        mod_timer(&skt->timer,
@@ -420,6 +429,9 @@ static int bcm63xx_drv_pcmcia_probe(struct platform_device *pdev)
        platform_set_drvdata(pdev, skt);
        return 0;
 
+err_gpio:
+       gpio_free(skt->pd->ready_gpio);
+
 err:
        if (skt->io_base)
                iounmap(skt->io_base);
@@ -442,6 +454,7 @@ static int bcm63xx_drv_pcmcia_remove(struct platform_device *pdev)
        iounmap(skt->io_base);
        res = skt->reg_res;
        release_mem_region(res->start, res->end - res->start + 1);
+       gpio_free(skt->pd->ready_gpio);
        kfree(skt);
        return 0;
 }
@@ -453,6 +466,8 @@ struct platform_driver bcm63xx_pcmcia_driver = {
                .name   = "bcm63xx_pcmcia",
                .owner  = THIS_MODULE,
        },
+
+       { },
 };
 
 #ifdef CONFIG_CARDBUS
This page took 0.026102 seconds and 4 git commands to generate.