The patch titled b44: fix eeprom endianess issue has been added to the -mm tree. Its filename is b44-fix-eeprom-endianess-issue.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: b44: fix eeprom endianess issue From: Michael Buesch <mb@xxxxxxxxx> This fixes eeprom read on big-endian architectures. Signed-off-by: Michael Buesch <mb@xxxxxxxxx> Cc: Jeff Garzik <jeff@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/b44.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/net/b44.c~b44-fix-eeprom-endianess-issue drivers/net/b44.c --- a/drivers/net/b44.c~b44-fix-eeprom-endianess-issue +++ a/drivers/net/b44.c @@ -2055,7 +2055,7 @@ static int b44_read_eeprom(struct b44 *b u16 *ptr = (u16 *) data; for (i = 0; i < 128; i += 2) - ptr[i / 2] = readw(bp->regs + 4096 + i); + ptr[i / 2] = cpu_to_le16(readw(bp->regs + 4096 + i)); return 0; } _ Patches currently in -mm which might be from mb@xxxxxxxxx are git-netdev-all.patch b44-fix-eeprom-endianess-issue.patch fix-intel-rng-detection.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html