The patch titled b44: fix stupid wol variable overflow bug has been removed from the -mm tree. Its filename was fix-stupid-wol-variable-overflow-bug.patch This patch was dropped because it isn't in the present -mm lineup ------------------------------------------------------ Subject: b44: fix stupid wol variable overflow bug From: Michael Buesch <mb@xxxxxxxxx> This bug was introduced by me. val is 16bit, but the read value is 32bit. Seems like I was smoking crack when porting that part of the driver. I guess that's the last stupid bug in these 4 lines of code. Signed-off-by: Michael Buesch <mb@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/net/b44.c | 3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) diff -puN drivers/net/b44.c~fix-stupid-wol-variable-overflow-bug drivers/net/b44.c --- a/drivers/net/b44.c~fix-stupid-wol-variable-overflow-bug +++ a/drivers/net/b44.c @@ -1581,8 +1581,7 @@ static void b44_setup_wol_pci(struct b44 u16 val; if (bp->sdev->bus->bustype != SSB_BUSTYPE_SSB) { - val = br32(bp, SSB_TMSLOW); - bw32(bp, SSB_TMSLOW, val | SSB_TMSLOW_PE); + bw32(bp, SSB_TMSLOW, br32(bp, SSB_TMSLOW) | SSB_TMSLOW_PE); pci_read_config_word(bp->sdev->bus->host_pci, SSB_PMCSR, &val); pci_write_config_word(bp->sdev->bus->host_pci, SSB_PMCSR, val | SSB_PE); } _ Patches currently in -mm which might be from mb@xxxxxxxxx are git-powerpc.patch mips-detect-bcm947xx-cpus.patch mips-bcm947xx-support.patch rfc-add-bcm947xx-to-kconfig.patch mips-add-bcm947xx-to-makefile.patch mips-add-gpio-support-to-the-bcm947xx-platform.patch mips-gpio-led-driver-for-the-wgt634u-machine.patch git-net.patch git-wireless.patch git-wireless-vs-gregkh-driver-driver-core-change-add_uevent_var-to-use-a-struct.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