diff options
author | Joe Perches <joe@perches.com> | 2013-08-01 19:17:49 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-08-02 15:33:54 -0400 |
commit | 1409a93274bb1b17f0b7a0b255a75e80899eec11 (patch) | |
tree | 778099b4c28e9089af438ca53f79613c43617069 /drivers/net/ethernet/qlogic/qlge/qlge.h | |
parent | 574e2af7c0af3273836def5e66f236521bb433c9 (diff) |
ethernet: Convert mac address uses of 6 to ETH_ALEN
Use the normal #define to help grep find mac addresses
and ensure that addresses are aligned.
pasemi.h has an unaligned access to mac_addr, unchanged
for now.
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Olof Johansson <olof@lixom.net> # pasemi_mac pieces
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/qlogic/qlge/qlge.h')
-rw-r--r-- | drivers/net/ethernet/qlogic/qlge/qlge.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/qlogic/qlge/qlge.h b/drivers/net/ethernet/qlogic/qlge/qlge.h index 7e8d68263963..899433778466 100644 --- a/drivers/net/ethernet/qlogic/qlge/qlge.h +++ b/drivers/net/ethernet/qlogic/qlge/qlge.h | |||
@@ -2149,7 +2149,7 @@ struct ql_adapter { | |||
2149 | struct timer_list timer; | 2149 | struct timer_list timer; |
2150 | atomic_t lb_count; | 2150 | atomic_t lb_count; |
2151 | /* Keep local copy of current mac address. */ | 2151 | /* Keep local copy of current mac address. */ |
2152 | char current_mac_addr[6]; | 2152 | char current_mac_addr[ETH_ALEN]; |
2153 | }; | 2153 | }; |
2154 | 2154 | ||
2155 | /* | 2155 | /* |