]> git.droids-corp.org - dpdk.git/commitdiff
i40e: fix registers access from big endian CPU
authorZhe Tao <zhe.tao@intel.com>
Fri, 17 Jul 2015 07:25:40 +0000 (15:25 +0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Sun, 19 Jul 2015 23:14:08 +0000 (01:14 +0200)
Signed-off-by: Zhe Tao <zhe.tao@intel.com>
Acked-by: Chao Zhu <chaozhu@linux.vnet.ibm.com>
drivers/net/i40e/base/i40e_osdep.h

index 3ce80578db556c38f6553b8ce5437e90f41caba8..70d2721c5decb652936900e4aa2af2b116afc958 100644 (file)
@@ -122,10 +122,10 @@ do {                                                            \
        ((volatile uint32_t *)((char *)(a)->hw_addr + (reg)))
 static inline uint32_t i40e_read_addr(volatile void *addr)
 {
-       return I40E_PCI_REG(addr);
+       return rte_le_to_cpu_32(I40E_PCI_REG(addr));
 }
 #define I40E_PCI_REG_WRITE(reg, value) \
-       do {I40E_PCI_REG((reg)) = (value);} while(0)
+       do { I40E_PCI_REG((reg)) = rte_cpu_to_le_32(value); } while (0)
 
 #define I40E_WRITE_FLUSH(a) I40E_READ_REG(a, I40E_GLGEN_STAT)
 #define I40EVF_WRITE_FLUSH(a) I40E_READ_REG(a, I40E_VFGEN_RSTAT)