netxen: fix endianness read mac address
In netxen_read_mac_addr, mac_addr should be declared u64 instead of __le64, used by host only. Signed-off-by: Amit Kumar Salecha <amit.salecha@qlogic.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
71fceff0ea
commit
a03d245199
@@ -1033,7 +1033,7 @@ static int netxen_get_flash_block(struct netxen_adapter *adapter, int base,
|
||||
return 0;
|
||||
}
|
||||
|
||||
int netxen_get_flash_mac_addr(struct netxen_adapter *adapter, __le64 *mac)
|
||||
int netxen_get_flash_mac_addr(struct netxen_adapter *adapter, u64 *mac)
|
||||
{
|
||||
__le32 *pmac = (__le32 *) mac;
|
||||
u32 offset;
|
||||
@@ -1058,7 +1058,7 @@ int netxen_get_flash_mac_addr(struct netxen_adapter *adapter, __le64 *mac)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int netxen_p3_get_mac_addr(struct netxen_adapter *adapter, __le64 *mac)
|
||||
int netxen_p3_get_mac_addr(struct netxen_adapter *adapter, u64 *mac)
|
||||
{
|
||||
uint32_t crbaddr, mac_hi, mac_lo;
|
||||
int pci_func = adapter->ahw.pci_func;
|
||||
|
Reference in New Issue
Block a user