Commit e0c87bd95e8dad455c23bc56513af8dcb1737e55

Authored by Alexandre Bounine
Committed by Linus Torvalds
1 parent 166c050bda

drivers/net/rionet.c: fix ethernet address macros for LE platforms

Modify Ethernet addess macros to be compatible with BE/LE platforms

Signed-off-by: Alexandre Bounine <alexandre.bounine@idt.com>
Cc: Chul Kim <chul.kim@idt.com>
Cc: Kumar Gala <galak@kernel.crashing.org>
Cc: Matt Porter <mporter@kernel.crashing.org>
Cc: Li Yang <leoli@freescale.com>
Cc: <stable@kernel.org>		[2.6.39+]
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

drivers/net/rionet.c
... ... @@ -88,8 +88,8 @@
88 88 #define dev_rionet_capable(dev) \
89 89 is_rionet_capable(dev->src_ops, dev->dst_ops)
90 90  
91   -#define RIONET_MAC_MATCH(x) (*(u32 *)x == 0x00010001)
92   -#define RIONET_GET_DESTID(x) (*(u16 *)(x + 4))
  91 +#define RIONET_MAC_MATCH(x) (!memcmp((x), "\00\01\00\01", 4))
  92 +#define RIONET_GET_DESTID(x) ((*((u8 *)x + 4) << 8) | *((u8 *)x + 5))
93 93  
94 94 static int rionet_rx_clean(struct net_device *ndev)
95 95 {