]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
net: axienet: Utilize of_get_mac_address()
authorTobias Klauser <tklauser@distanz.ch>
Wed, 7 Dec 2016 12:24:44 +0000 (13:24 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 8 Dec 2016 16:34:03 +0000 (11:34 -0500)
Do not open code getting the MAC address exclusively from the
"local-mac-address" property, but instead use of_get_mac_address()
which looks up the MAC address using the 3 typical property names.

Also avoid casting away the const qualifier of the return value by
making axienet_set_mac_address() take a const void* address.

Follows commit b34296a9c047 ("net: ethoc: Utilize
of_get_mac_address()").

Cc: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/xilinx/xilinx_axienet_main.c

index c9c8a3be9f1ba9c045c49b0b1365a2655d467701..b96e96919e31d2da791da73aeeaad6e85fd8c581 100644 (file)
@@ -25,6 +25,7 @@
 #include <linux/module.h>
 #include <linux/netdevice.h>
 #include <linux/of_mdio.h>
+#include <linux/of_net.h>
 #include <linux/of_platform.h>
 #include <linux/of_irq.h>
 #include <linux/of_address.h>
@@ -292,7 +293,8 @@ out:
  * This function is called to initialize the MAC address of the Axi Ethernet
  * core. It writes to the UAW0 and UAW1 registers of the core.
  */
-static void axienet_set_mac_address(struct net_device *ndev, void *address)
+static void axienet_set_mac_address(struct net_device *ndev,
+                                   const void *address)
 {
        struct axienet_local *lp = netdev_priv(ndev);
 
@@ -1456,7 +1458,7 @@ static int axienet_probe(struct platform_device *pdev)
        struct device_node *np;
        struct axienet_local *lp;
        struct net_device *ndev;
-       u8 mac_addr[6];
+       const void *mac_addr;
        struct resource *ethres, dmares;
        u32 value;
 
@@ -1567,13 +1569,12 @@ static int axienet_probe(struct platform_device *pdev)
        }
 
        /* Retrieve the MAC address */
-       ret = of_property_read_u8_array(pdev->dev.of_node,
-                                       "local-mac-address", mac_addr, 6);
-       if (ret) {
+       mac_addr = of_get_mac_address(pdev->dev.of_node);
+       if (!mac_addr) {
                dev_err(&pdev->dev, "could not find MAC address\n");
                goto free_netdev;
        }
-       axienet_set_mac_address(ndev, (void *)mac_addr);
+       axienet_set_mac_address(ndev, mac_addr);
 
        lp->coalesce_count_rx = XAXIDMA_DFT_RX_THRESHOLD;
        lp->coalesce_count_tx = XAXIDMA_DFT_TX_THRESHOLD;