Commit ba1b1234 authored by Benjamin Herrenschmidt's avatar Benjamin Herrenschmidt Committed by David S. Miller

ftgmac100: Rename ftgmac100_setup_mac to ftgmac100_initial_mac

To remove more confusion. This function is about obtaining the
initial MAC address at driver probe time.
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f39c71b0
...@@ -184,7 +184,7 @@ static void ftgmac100_write_mac_addr(struct ftgmac100 *priv, const u8 *mac) ...@@ -184,7 +184,7 @@ static void ftgmac100_write_mac_addr(struct ftgmac100 *priv, const u8 *mac)
iowrite32(laddr, priv->base + FTGMAC100_OFFSET_MAC_LADR); iowrite32(laddr, priv->base + FTGMAC100_OFFSET_MAC_LADR);
} }
static void ftgmac100_setup_mac(struct ftgmac100 *priv) static void ftgmac100_initial_mac(struct ftgmac100 *priv)
{ {
u8 mac[ETH_ALEN]; u8 mac[ETH_ALEN];
unsigned int m; unsigned int m;
...@@ -1442,7 +1442,7 @@ static int ftgmac100_probe(struct platform_device *pdev) ...@@ -1442,7 +1442,7 @@ static int ftgmac100_probe(struct platform_device *pdev)
netdev->irq = irq; netdev->irq = irq;
/* MAC address from chip or random one */ /* MAC address from chip or random one */
ftgmac100_setup_mac(priv); ftgmac100_initial_mac(priv);
np = pdev->dev.of_node; np = pdev->dev.of_node;
if (np && (of_device_is_compatible(np, "aspeed,ast2400-mac") || if (np && (of_device_is_compatible(np, "aspeed,ast2400-mac") ||
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment