fix typo that keeps solo from working
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1448 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
08376d1c66
commit
a3a59bf104
|
@ -880,7 +880,7 @@ static struct dimm_size spd_get_dimm_size(unsigned device)
|
|||
low = spd_read_byte(device, 6); /* (low byte) */
|
||||
if (low < 0) goto hw_err;
|
||||
value = value | (low & 0xff);
|
||||
if ((value != 72) && (value &= 64)) goto val_err;
|
||||
if ((value != 72) && (value != 64)) goto val_err;
|
||||
sz.side1 += log2(value);
|
||||
|
||||
/* side 2 */
|
||||
|
|
Loading…
Reference in New Issue