net: eepro100: Introduce device private data
authorMarek Vasut <marek.vasut+renesas@gmail.com>
Sat, 23 May 2020 14:49:07 +0000 (16:49 +0200)
committerMarek Vasut <marek.vasut+renesas@gmail.com>
Thu, 18 Jun 2020 17:34:40 +0000 (19:34 +0200)
Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
drivers/net/eepro100.c

index 532d7aa..2c25307 100644 (file)
@@ -201,6 +201,10 @@ static const char i82558_config_cmd[] = {
        0x31, 0x05,
 };
 
+struct eepro100_priv {
+       struct eth_device       dev;
+};
+
 #if defined(CONFIG_E500)
 #define bus_to_phys(dev, a)    (a)
 #define phys_to_bus(dev, a)    (a)
@@ -751,6 +755,7 @@ done:
 
 int eepro100_initialize(bd_t *bis)
 {
+       struct eepro100_priv *priv;
        struct eth_device *dev;
        int card_number = 0;
        u32 iobase, status;
@@ -785,11 +790,12 @@ int eepro100_initialize(bd_t *bis)
                        continue;
                }
 
-               dev = calloc(1, sizeof(*dev));
-               if (!dev) {
+               priv = calloc(1, sizeof(*priv));
+               if (!priv) {
                        printf("eepro100: Can not allocate memory\n");
                        break;
                }
+               dev = &priv->dev;
 
                sprintf(dev->name, "i82559#%d", card_number);
                dev->priv = (void *)devno; /* this have to come before bus_to_phys() */
@@ -804,7 +810,7 @@ int eepro100_initialize(bd_t *bis)
                ret = eepro100_initialize_mii(dev);
                if (ret) {
                        eth_unregister(dev);
-                       free(dev);
+                       free(priv);
                        return ret;
                }