net: eepro100: Drop bd_t pointer from read_hw_addr()
authorMarek Vasut <marek.vasut+renesas@gmail.com>
Sat, 23 May 2020 15:20:39 +0000 (17:20 +0200)
committerMarek Vasut <marek.vasut+renesas@gmail.com>
Thu, 18 Jun 2020 17:34:40 +0000 (19:34 +0200)
The pointer is unused, so drop it. Rename the function to start
with the eepro100_ prefix.

Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
drivers/net/eepro100.c

index ed6bbd5..fb8a68f 100644 (file)
@@ -512,7 +512,7 @@ static struct pci_device_id supported[] = {
        { }
 };
 
-static void read_hw_addr(struct eepro100_priv *priv, bd_t *bis)
+static void eepro100_get_hwaddr(struct eepro100_priv *priv)
 {
        u16 sum = 0;
        int i, j;
@@ -845,7 +845,7 @@ int eepro100_initialize(bd_t *bis)
 
                udelay(10 * 1000);
 
-               read_hw_addr(priv, bis);
+               eepro100_get_hwaddr(priv);
        }
 
        return card_number;