[coreboot-gerrit] Change in coreboot[master]: northbridge/intel/haswell: Fix copy paste error

Ryan Salsamendi (Code Review) gerrit at coreboot.org
Sat Jul 1 02:43:34 CEST 2017


Ryan Salsamendi has uploaded this change for review. ( https://review.coreboot.org/20445


Change subject: northbridge/intel/haswell: Fix copy paste error
......................................................................

northbridge/intel/haswell: Fix copy paste error

DIMMB's DDR width is in bit 20, not bit 19.

Change-Id: I48866d9243c2a576a02519724429801ae47c5644
Signed-off-by: Ryan Salsamendi <rsalsamendi at hotmail.com>
---
M src/northbridge/intel/haswell/raminit.c
1 file changed, 1 insertion(+), 1 deletion(-)



  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/45/20445/1

diff --git a/src/northbridge/intel/haswell/raminit.c b/src/northbridge/intel/haswell/raminit.c
index aa07f16..e48cca9 100644
--- a/src/northbridge/intel/haswell/raminit.c
+++ b/src/northbridge/intel/haswell/raminit.c
@@ -104,7 +104,7 @@
 		       ((ch_conf >> 16) & 1) ? "" : ", selected");
 		printk(BIOS_DEBUG, "   DIMMB %d MB width %s %s rank%s\n",
 		       ((ch_conf >> 8) & 0xff) * 256,
-		       ((ch_conf >> 19) & 1) ? "x16" : "x8 or x32",
+		       ((ch_conf >> 20) & 1) ? "x16" : "x8 or x32",
 		       ((ch_conf >> 18) & 1) ? "dual" : "single",
 		       ((ch_conf >> 16) & 1) ? ", selected" : "");
 	}

-- 
To view, visit https://review.coreboot.org/20445
To unsubscribe, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I48866d9243c2a576a02519724429801ae47c5644
Gerrit-Change-Number: 20445
Gerrit-PatchSet: 1
Gerrit-Owner: Ryan Salsamendi <rsalsamendi at hotmail.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20170701/54bd585d/attachment.html>


More information about the coreboot-gerrit mailing list