NetXen: Fixes for Power PC architecture

NetXen: Fix PPC architecture specific bugs
Fixes some issues seen on Big endian machines.

Signed-off by: Milan Bag <mbag@netxen.com>
Signed-off by: Mithlesh Thukral <mithlesh@netxen.com>

Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
Mithlesh Thukral 2007-04-20 07:56:42 -07:00 committed by Jeff Garzik
parent 6c80b18df3
commit 6d1495f29a
3 changed files with 6 additions and 7 deletions

View file

@ -64,9 +64,9 @@
#include "netxen_nic_hw.h" #include "netxen_nic_hw.h"
#define _NETXEN_NIC_LINUX_MAJOR 3 #define _NETXEN_NIC_LINUX_MAJOR 3
#define _NETXEN_NIC_LINUX_MINOR 3 #define _NETXEN_NIC_LINUX_MINOR 4
#define _NETXEN_NIC_LINUX_SUBVERSION 3 #define _NETXEN_NIC_LINUX_SUBVERSION 2
#define NETXEN_NIC_LINUX_VERSIONID "3.3.3" #define NETXEN_NIC_LINUX_VERSIONID "3.4.2"
#define NUM_FLASH_SECTORS (64) #define NUM_FLASH_SECTORS (64)
#define FLASH_SECTOR_SIZE (64 * 1024) #define FLASH_SECTOR_SIZE (64 * 1024)

View file

@ -1116,7 +1116,7 @@ void netxen_nic_flash_print(struct netxen_adapter *adapter)
char brd_name[NETXEN_MAX_SHORT_NAME]; char brd_name[NETXEN_MAX_SHORT_NAME];
struct netxen_new_user_info user_info; struct netxen_new_user_info user_info;
int i, addr = USER_START; int i, addr = USER_START;
u32 *ptr32; __le32 *ptr32;
struct netxen_board_info *board_info = &(adapter->ahw.boardcfg); struct netxen_board_info *board_info = &(adapter->ahw.boardcfg);
if (board_info->magic != NETXEN_BDINFO_MAGIC) { if (board_info->magic != NETXEN_BDINFO_MAGIC) {
@ -1142,7 +1142,6 @@ void netxen_nic_flash_print(struct netxen_adapter *adapter)
netxen_nic_driver_name); netxen_nic_driver_name);
return; return;
} }
*ptr32 = le32_to_cpu(*ptr32);
ptr32++; ptr32++;
addr += sizeof(u32); addr += sizeof(u32);
} }

View file

@ -439,6 +439,7 @@ do_rom_fast_read_words(struct netxen_adapter *adapter, int addr,
ret = do_rom_fast_read(adapter, addridx, (int *)bytes); ret = do_rom_fast_read(adapter, addridx, (int *)bytes);
if (ret != 0) if (ret != 0)
break; break;
*(int *)bytes = cpu_to_le32(*(int *)bytes);
bytes += 4; bytes += 4;
} }
@ -496,8 +497,7 @@ static inline int do_rom_fast_write_words(struct netxen_adapter *adapter,
int timeout = 0; int timeout = 0;
int data; int data;
data = *(u32*)bytes; data = le32_to_cpu((*(u32*)bytes));
ret = do_rom_fast_write(adapter, addridx, data); ret = do_rom_fast_write(adapter, addridx, data);
if (ret < 0) if (ret < 0)
return ret; return ret;