The patch titled ppc: logical/bitand typo in powerpc/boot/4xx.c has been removed from the -mm tree. Its filename was ppc-logical-bitand-typo-in-powerpc-boot-4xxc.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: ppc: logical/bitand typo in powerpc/boot/4xx.c From: Roel Kluin <12o3l@xxxxxxxxxx> logical/bitand typo Signed-off-by: Roel Kluin <12o3l@xxxxxxxxxx> Cc: Josh Boyer <jwboyer@xxxxxxxxxxxxxxxxxx> Cc: Kumar Gala <galak@xxxxxxxxxxxxxxxxx> Cc: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx>, Cc: Paul Mackerras <paulus@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/powerpc/boot/4xx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/powerpc/boot/4xx.c~ppc-logical-bitand-typo-in-powerpc-boot-4xxc arch/powerpc/boot/4xx.c --- a/arch/powerpc/boot/4xx.c~ppc-logical-bitand-typo-in-powerpc-boot-4xxc +++ a/arch/powerpc/boot/4xx.c @@ -159,7 +159,7 @@ void ibm4xx_denali_fixup_memsize(void) val = DDR_GET_VAL(val, DDR_CS_MAP, DDR_CS_MAP_SHIFT); cs = 0; while (val) { - if (val && 0x1) + if (val & 0x1) cs++; val = val >> 1; } _ Patches currently in -mm which might be from 12o3l@xxxxxxxxxx are origin.patch git-powerpc.patch git-mips.patch git-net.patch m68k-balance-ioremap-and-iounmap-in-m68k-atari-hades-pcic.patch sound-oss-tridentc-fix-incorrect-test-in-trident_ac97_set.patch fix-and-typo-in-eicons-addinfo.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