Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e0802967 authored by Roel Kluin's avatar Roel Kluin Committed by Josh Boyer
Browse files

[POWERPC] 4xx: logical/bitand typo in powerpc/boot/4xx.c



logical/bitand typo

Signed-off-by: default avatarRoel Kluin <12o3l@tiscali.nl>
Signed-off-by: default avatarJosh Boyer <jwboyer@linux.vnet.ibm.com>
parent 1c0d3eb5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}