The hip04 ethernet use the big endian for tx and rx, so set desc to
big endian and remove the unused next_addr.

Signed-off-by: Ding Tianhong <[email protected]>
Cc: "David S. Miller" <[email protected]>
Cc: Eric Dumazet <[email protected]>
Cc: Arnd Bergmann <[email protected]>
Cc: Zhangfei Gao <[email protected]>
Cc: Dan Carpenter <[email protected]>
Cc: Joe Perches <[email protected]>
---
 drivers/net/ethernet/hisilicon/hip04_eth.c | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/drivers/net/ethernet/hisilicon/hip04_eth.c 
b/drivers/net/ethernet/hisilicon/hip04_eth.c
index b0a7f03..6473462 100644
--- a/drivers/net/ethernet/hisilicon/hip04_eth.c
+++ b/drivers/net/ethernet/hisilicon/hip04_eth.c
@@ -132,19 +132,18 @@
 #define HIP04_MIN_TX_COALESCE_FRAMES   1
 
 struct tx_desc {
-       u32 send_addr;
-       u32 send_size;
-       u32 next_addr;
-       u32 cfg;
-       u32 wb_addr;
+       __be32 send_addr;
+       __be32 send_size;
+       __be32 cfg;
+       __be32 wb_addr;
 } __aligned(64);
 
 struct rx_desc {
-       u16 reserved_16;
-       u16 pkt_len;
-       u32 reserve1[3];
-       u32 pkt_err;
-       u32 reserve2[4];
+       __be16 reserved_16;
+       __be16 pkt_len;
+       __be32 reserve1[3];
+       __be32 pkt_err;
+       __be32 reserve2[4];
 };
 
 struct hip04_priv {
-- 
1.8.0


--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to