Commit 0f9dad10 authored by Joe Perches's avatar Joe Perches Committed by David S. Miller

bnx2x: Remove local defines for %pM and mac address

Use %pM and mac address directly instead.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Acked-by: default avatarEilon Greenstein <eilong@broadcom.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a27fc96b
...@@ -115,10 +115,6 @@ do { \ ...@@ -115,10 +115,6 @@ do { \
dev_info(&bp->pdev->dev, __fmt, ##__args); \ dev_info(&bp->pdev->dev, __fmt, ##__args); \
} while (0) } while (0)
#define BNX2X_MAC_FMT "%pM"
#define BNX2X_MAC_PRN_LIST(mac) (mac)
#ifdef BNX2X_STOP_ON_ERROR #ifdef BNX2X_STOP_ON_ERROR
void bnx2x_int_disable(struct bnx2x *bp); void bnx2x_int_disable(struct bnx2x *bp);
#define bnx2x_panic() do { \ #define bnx2x_panic() do { \
......
...@@ -9315,9 +9315,8 @@ static void __devinit bnx2x_get_mac_hwinfo(struct bnx2x *bp) ...@@ -9315,9 +9315,8 @@ static void __devinit bnx2x_get_mac_hwinfo(struct bnx2x *bp)
val = MF_CFG_RD(bp, func_ext_config[func]. val = MF_CFG_RD(bp, func_ext_config[func].
iscsi_mac_addr_lower); iscsi_mac_addr_lower);
bnx2x_set_mac_buf(iscsi_mac, val, val2); bnx2x_set_mac_buf(iscsi_mac, val, val2);
BNX2X_DEV_INFO("Read iSCSI MAC: " BNX2X_DEV_INFO("Read iSCSI MAC: %pM\n",
BNX2X_MAC_FMT"\n", iscsi_mac);
BNX2X_MAC_PRN_LIST(iscsi_mac));
} else } else
bp->flags |= NO_ISCSI_OOO_FLAG | NO_ISCSI_FLAG; bp->flags |= NO_ISCSI_OOO_FLAG | NO_ISCSI_FLAG;
...@@ -9327,9 +9326,8 @@ static void __devinit bnx2x_get_mac_hwinfo(struct bnx2x *bp) ...@@ -9327,9 +9326,8 @@ static void __devinit bnx2x_get_mac_hwinfo(struct bnx2x *bp)
val = MF_CFG_RD(bp, func_ext_config[func]. val = MF_CFG_RD(bp, func_ext_config[func].
fcoe_mac_addr_lower); fcoe_mac_addr_lower);
bnx2x_set_mac_buf(fip_mac, val, val2); bnx2x_set_mac_buf(fip_mac, val, val2);
BNX2X_DEV_INFO("Read FCoE L2 MAC to " BNX2X_DEV_INFO("Read FCoE L2 MAC to %pM\n",
BNX2X_MAC_FMT"\n", fip_mac);
BNX2X_MAC_PRN_LIST(fip_mac));
} else } else
bp->flags |= NO_FCOE_FLAG; bp->flags |= NO_FCOE_FLAG;
...@@ -9384,9 +9382,9 @@ static void __devinit bnx2x_get_mac_hwinfo(struct bnx2x *bp) ...@@ -9384,9 +9382,9 @@ static void __devinit bnx2x_get_mac_hwinfo(struct bnx2x *bp)
if (!is_valid_ether_addr(bp->dev->dev_addr)) if (!is_valid_ether_addr(bp->dev->dev_addr))
dev_err(&bp->pdev->dev, dev_err(&bp->pdev->dev,
"bad Ethernet MAC address configuration: " "bad Ethernet MAC address configuration: "
BNX2X_MAC_FMT", change it manually before bringing up " "%pM, change it manually before bringing up "
"the appropriate network interface\n", "the appropriate network interface\n",
BNX2X_MAC_PRN_LIST(bp->dev->dev_addr)); bp->dev->dev_addr);
} }
static int __devinit bnx2x_get_hwinfo(struct bnx2x *bp) static int __devinit bnx2x_get_hwinfo(struct bnx2x *bp)
......
...@@ -707,9 +707,8 @@ static void bnx2x_set_one_mac_e2(struct bnx2x *bp, ...@@ -707,9 +707,8 @@ static void bnx2x_set_one_mac_e2(struct bnx2x *bp,
bnx2x_vlan_mac_set_cmd_hdr_e2(bp, o, add, CLASSIFY_RULE_OPCODE_MAC, bnx2x_vlan_mac_set_cmd_hdr_e2(bp, o, add, CLASSIFY_RULE_OPCODE_MAC,
&rule_entry->mac.header); &rule_entry->mac.header);
DP(BNX2X_MSG_SP, "About to %s MAC "BNX2X_MAC_FMT" for " DP(BNX2X_MSG_SP, "About to %s MAC %pM for Queue %d\n",
"Queue %d\n", (add ? "add" : "delete"), add ? "add" : "delete", mac, raw->cl_id);
BNX2X_MAC_PRN_LIST(mac), raw->cl_id);
/* Set a MAC itself */ /* Set a MAC itself */
bnx2x_set_fw_mac_addr(&rule_entry->mac.mac_msb, bnx2x_set_fw_mac_addr(&rule_entry->mac.mac_msb,
...@@ -801,9 +800,9 @@ static inline void bnx2x_vlan_mac_set_rdata_e1x(struct bnx2x *bp, ...@@ -801,9 +800,9 @@ static inline void bnx2x_vlan_mac_set_rdata_e1x(struct bnx2x *bp,
bnx2x_vlan_mac_set_cfg_entry_e1x(bp, o, add, opcode, mac, vlan_id, bnx2x_vlan_mac_set_cfg_entry_e1x(bp, o, add, opcode, mac, vlan_id,
cfg_entry); cfg_entry);
DP(BNX2X_MSG_SP, "%s MAC "BNX2X_MAC_FMT" CLID %d CAM offset %d\n", DP(BNX2X_MSG_SP, "%s MAC %pM CLID %d CAM offset %d\n",
(add ? "setting" : "clearing"), add ? "setting" : "clearing",
BNX2X_MAC_PRN_LIST(mac), raw->cl_id, cam_offset); mac, raw->cl_id, cam_offset);
} }
/** /**
...@@ -2579,9 +2578,8 @@ static inline void bnx2x_mcast_hdl_pending_add_e2(struct bnx2x *bp, ...@@ -2579,9 +2578,8 @@ static inline void bnx2x_mcast_hdl_pending_add_e2(struct bnx2x *bp,
cnt++; cnt++;
DP(BNX2X_MSG_SP, "About to configure "BNX2X_MAC_FMT DP(BNX2X_MSG_SP, "About to configure %pM mcast MAC\n",
" mcast MAC\n", pmac_pos->mac);
BNX2X_MAC_PRN_LIST(pmac_pos->mac));
list_del(&pmac_pos->link); list_del(&pmac_pos->link);
...@@ -2702,9 +2700,8 @@ static inline void bnx2x_mcast_hdl_add(struct bnx2x *bp, ...@@ -2702,9 +2700,8 @@ static inline void bnx2x_mcast_hdl_add(struct bnx2x *bp,
cnt++; cnt++;
DP(BNX2X_MSG_SP, "About to configure "BNX2X_MAC_FMT DP(BNX2X_MSG_SP, "About to configure %pM mcast MAC\n",
" mcast MAC\n", mlist_pos->mac);
BNX2X_MAC_PRN_LIST(mlist_pos->mac));
} }
*line_idx = cnt; *line_idx = cnt;
...@@ -2998,9 +2995,8 @@ static inline void bnx2x_mcast_hdl_add_e1h(struct bnx2x *bp, ...@@ -2998,9 +2995,8 @@ static inline void bnx2x_mcast_hdl_add_e1h(struct bnx2x *bp,
bit = bnx2x_mcast_bin_from_mac(mlist_pos->mac); bit = bnx2x_mcast_bin_from_mac(mlist_pos->mac);
BNX2X_57711_SET_MC_FILTER(mc_filter, bit); BNX2X_57711_SET_MC_FILTER(mc_filter, bit);
DP(BNX2X_MSG_SP, "About to configure " DP(BNX2X_MSG_SP, "About to configure %pM mcast MAC, bin %d\n",
BNX2X_MAC_FMT" mcast MAC, bin %d\n", mlist_pos->mac, bit);
BNX2X_MAC_PRN_LIST(mlist_pos->mac), bit);
/* bookkeeping... */ /* bookkeeping... */
BIT_VEC64_SET_BIT(o->registry.aprox_match.vec, BIT_VEC64_SET_BIT(o->registry.aprox_match.vec,
...@@ -3233,9 +3229,8 @@ static inline int bnx2x_mcast_handle_restore_cmd_e1( ...@@ -3233,9 +3229,8 @@ static inline int bnx2x_mcast_handle_restore_cmd_e1(
i++; i++;
DP(BNX2X_MSG_SP, "About to configure "BNX2X_MAC_FMT DP(BNX2X_MSG_SP, "About to configure %pM mcast MAC\n",
" mcast MAC\n", cfg_data.mac);
BNX2X_MAC_PRN_LIST(cfg_data.mac));
} }
*rdata_idx = i; *rdata_idx = i;
...@@ -3270,9 +3265,8 @@ static inline int bnx2x_mcast_handle_pending_cmds_e1( ...@@ -3270,9 +3265,8 @@ static inline int bnx2x_mcast_handle_pending_cmds_e1(
cnt++; cnt++;
DP(BNX2X_MSG_SP, "About to configure "BNX2X_MAC_FMT DP(BNX2X_MSG_SP, "About to configure %pM mcast MAC\n",
" mcast MAC\n", pmac_pos->mac);
BNX2X_MAC_PRN_LIST(pmac_pos->mac));
} }
break; break;
...@@ -3357,9 +3351,8 @@ static inline int bnx2x_mcast_refresh_registry_e1(struct bnx2x *bp, ...@@ -3357,9 +3351,8 @@ static inline int bnx2x_mcast_refresh_registry_e1(struct bnx2x *bp,
&data->config_table[i].middle_mac_addr, &data->config_table[i].middle_mac_addr,
&data->config_table[i].lsb_mac_addr, &data->config_table[i].lsb_mac_addr,
elem->mac); elem->mac);
DP(BNX2X_MSG_SP, "Adding registry entry for [" DP(BNX2X_MSG_SP, "Adding registry entry for [%pM]\n",
BNX2X_MAC_FMT"]\n", elem->mac);
BNX2X_MAC_PRN_LIST(elem->mac));
list_add_tail(&elem->link, list_add_tail(&elem->link,
&o->registry.exact_match.macs); &o->registry.exact_match.macs);
} }
......
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