diff options
author | Michal Simek <monstr@monstr.eu> | 2010-09-10 07:22:35 -0400 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2010-10-21 01:51:56 -0400 |
commit | 44180a573ec936cd989a7c0478f5fd1cf8e1ebc3 (patch) | |
tree | b59dc64239ace523cbde97d11e7ec84b8c292428 | |
parent | b4dcaee50a3859bc3c7e6bace5daeec1d903e239 (diff) |
net: emaclite: Add support for little-endian platforms
Upcomming Microblaze is little endian that's why is necessary
to fix protocol and length loading.
Signed-off-by: Michal Simek <monstr@monstr.eu>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Acked-by: David S. Miller <davem@davemloft.net>
CC: Eric Dumazet <eric.dumazet@gmail.com>
CC: netdev@vger.kernel.org
CC: linux-kernel@vger.kernel.org
CC: devicetree-discuss@lists.ozlabs.org
-rw-r--r-- | drivers/net/xilinx_emaclite.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/xilinx_emaclite.c b/drivers/net/xilinx_emaclite.c index ecbbb688eba0..4da1d90c2895 100644 --- a/drivers/net/xilinx_emaclite.c +++ b/drivers/net/xilinx_emaclite.c | |||
@@ -430,8 +430,8 @@ static u16 xemaclite_recv_data(struct net_local *drvdata, u8 *data) | |||
430 | } | 430 | } |
431 | 431 | ||
432 | /* Get the protocol type of the ethernet frame that arrived */ | 432 | /* Get the protocol type of the ethernet frame that arrived */ |
433 | proto_type = ((in_be32(addr + XEL_HEADER_OFFSET + | 433 | proto_type = ((ntohl(in_be32(addr + XEL_HEADER_OFFSET + |
434 | XEL_RXBUFF_OFFSET) >> XEL_HEADER_SHIFT) & | 434 | XEL_RXBUFF_OFFSET)) >> XEL_HEADER_SHIFT) & |
435 | XEL_RPLR_LENGTH_MASK); | 435 | XEL_RPLR_LENGTH_MASK); |
436 | 436 | ||
437 | /* Check if received ethernet frame is a raw ethernet frame | 437 | /* Check if received ethernet frame is a raw ethernet frame |
@@ -439,9 +439,9 @@ static u16 xemaclite_recv_data(struct net_local *drvdata, u8 *data) | |||
439 | if (proto_type > (ETH_FRAME_LEN + ETH_FCS_LEN)) { | 439 | if (proto_type > (ETH_FRAME_LEN + ETH_FCS_LEN)) { |
440 | 440 | ||
441 | if (proto_type == ETH_P_IP) { | 441 | if (proto_type == ETH_P_IP) { |
442 | length = ((in_be32(addr + | 442 | length = ((ntohl(in_be32(addr + |
443 | XEL_HEADER_IP_LENGTH_OFFSET + | 443 | XEL_HEADER_IP_LENGTH_OFFSET + |
444 | XEL_RXBUFF_OFFSET) >> | 444 | XEL_RXBUFF_OFFSET)) >> |
445 | XEL_HEADER_SHIFT) & | 445 | XEL_HEADER_SHIFT) & |
446 | XEL_RPLR_LENGTH_MASK); | 446 | XEL_RPLR_LENGTH_MASK); |
447 | length += ETH_HLEN + ETH_FCS_LEN; | 447 | length += ETH_HLEN + ETH_FCS_LEN; |