linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH][ppc] logical/bitand typo in powerpc/boot/4xx.c
@ 2008-01-23 22:37 Roel Kluin
  2008-01-23 23:05 ` Joe Perches
  2008-01-24  1:17 ` Josh Boyer
  0 siblings, 2 replies; 9+ messages in thread
From: Roel Kluin @ 2008-01-23 22:37 UTC (permalink / raw)
  To: jwboyer, lkml; +Cc: linuxppc-dev

logical/bitand typo

Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
---
diff --git a/arch/powerpc/boot/4xx.c b/arch/powerpc/boot/4xx.c
index ebf9e21..dcfb459 100644
--- a/arch/powerpc/boot/4xx.c
+++ b/arch/powerpc/boot/4xx.c
@@ -104,7 +104,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;
 	}

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2008-01-29 14:24 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-23 22:37 [PATCH][ppc] logical/bitand typo in powerpc/boot/4xx.c Roel Kluin
2008-01-23 23:05 ` Joe Perches
2008-01-24  0:18   ` Roel Kluin
2008-01-24  0:39     ` Joe Perches
2008-01-29 10:55     ` Andy Whitcroft
2008-01-29 13:34       ` Roel Kluin
2008-01-24  1:17 ` Josh Boyer
2008-01-26 13:37   ` Stefan Roese
2008-01-29 14:22   ` Valentine Barshak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).