The patch titled
     ppc: logical/bitand typo in powerpc/boot/4xx.c
has been added to the -mm tree.  Its filename is
     ppc-logical-bitand-typo-in-powerpc-boot-4xxc.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this

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 <[EMAIL PROTECTED]>

logical/bitand typo

Signed-off-by: Roel Kluin <[EMAIL PROTECTED]>
Cc: Josh Boyer <[EMAIL PROTECTED]>
Cc: Kumar Gala <[EMAIL PROTECTED]>
Cc: Benjamin Herrenschmidt <[EMAIL PROTECTED]>,
Cc: Paul Mackerras <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 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 [EMAIL PROTECTED] are

ppc-logical-bitand-typo-in-powerpc-boot-4xxc.patch
git-dvb.patch
git-mips.patch
git-net.patch
git-scsi-misc.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 [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to