net: ethernet: ti: cpsw: move mac_hi/lo defines in cpsw.h
authorGrygorii Strashko <grygorii.strashko@ti.com>
Fri, 1 Dec 2017 00:21:13 +0000 (18:21 -0600)
committerDavid S. Miller <davem@davemloft.net>
Fri, 1 Dec 2017 21:36:32 +0000 (16:36 -0500)
Move mac_hi/lo defines in common header cpsw.h and re-use
them for netcp_ethss.c.

Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/ti/cpsw.c
drivers/net/ethernet/ti/cpsw.h
drivers/net/ethernet/ti/netcp_ethss.c

index 54c8758..2bf0bda 100644 (file)
@@ -978,10 +978,6 @@ static inline void soft_reset(const char *module, void __iomem *reg)
        WARN(readl_relaxed(reg) & 1, "failed to soft-reset %s\n", module);
 }
 
-#define mac_hi(mac)    (((mac)[0] << 0) | ((mac)[1] << 8) |    \
-                        ((mac)[2] << 16) | ((mac)[3] << 24))
-#define mac_lo(mac)    (((mac)[4] << 0) | ((mac)[5] << 8))
-
 static void cpsw_set_slave_mac(struct cpsw_slave *slave,
                               struct cpsw_priv *priv)
 {
index a325f55..cf111db 100644 (file)
 #include <linux/if_ether.h>
 #include <linux/phy.h>
 
+#define mac_hi(mac)    (((mac)[0] << 0) | ((mac)[1] << 8) |    \
+                        ((mac)[2] << 16) | ((mac)[3] << 24))
+#define mac_lo(mac)    (((mac)[4] << 0) | ((mac)[5] << 8))
+
 void cpsw_phy_sel(struct device *dev, phy_interface_t phy_mode, int slave);
 int ti_cm_get_macid(struct device *dev, int slave, u8 *mac_addr);
 
index e831c49..12765e4 100644 (file)
@@ -27,6 +27,7 @@
 #include <linux/net_tstamp.h>
 #include <linux/ethtool.h>
 
+#include "cpsw.h"
 #include "cpsw_ale.h"
 #include "netcp.h"
 #include "cpts.h"
@@ -2047,10 +2048,6 @@ static const struct ethtool_ops keystone_ethtool_ops = {
        .get_ts_info            = keystone_get_ts_info,
 };
 
-#define mac_hi(mac)    (((mac)[0] << 0) | ((mac)[1] << 8) |    \
-                        ((mac)[2] << 16) | ((mac)[3] << 24))
-#define mac_lo(mac)    (((mac)[4] << 0) | ((mac)[5] << 8))
-
 static void gbe_set_slave_mac(struct gbe_slave *slave,
                              struct gbe_intf *gbe_intf)
 {