wifi: ray_cs: Fix an error handling path in ray_probe()
[platform/kernel/linux-starfive.git] / drivers / net / wireless / legacy / ray_cs.c
index 1f57a00..38782d4 100644 (file)
@@ -270,13 +270,14 @@ static int ray_probe(struct pcmcia_device *p_dev)
 {
        ray_dev_t *local;
        struct net_device *dev;
+       int ret;
 
        dev_dbg(&p_dev->dev, "ray_attach()\n");
 
        /* Allocate space for private device-specific data */
        dev = alloc_etherdev(sizeof(ray_dev_t));
        if (!dev)
-               goto fail_alloc_dev;
+               return -ENOMEM;
 
        local = netdev_priv(dev);
        local->finder = p_dev;
@@ -313,11 +314,16 @@ static int ray_probe(struct pcmcia_device *p_dev)
        timer_setup(&local->timer, NULL, 0);
 
        this_device = p_dev;
-       return ray_config(p_dev);
+       ret = ray_config(p_dev);
+       if (ret)
+               goto err_free_dev;
+
+       return 0;
 
-fail_alloc_dev:
-       return -ENOMEM;
-} /* ray_attach */
+err_free_dev:
+       free_netdev(dev);
+       return ret;
+}
 
 static void ray_detach(struct pcmcia_device *link)
 {