summaryrefslogtreecommitdiff
path: root/src/mainboard/intel/cannonlake_rvp
diff options
context:
space:
mode:
authorJonathan Neuschäfer <j.neuschaefer@gmx.net>2018-02-12 12:00:45 +0100
committerMartin Roth <martinroth@google.com>2018-02-14 17:02:56 +0000
commita94b112aec5a8df83313816ca2ca8019cffaba5f (patch)
tree57de1809eda1a5e159ad1c5175459b287b76f521 /src/mainboard/intel/cannonlake_rvp
parent0017004b06fcc41f75a522bec41f319152f9adee (diff)
downloadcoreboot-a94b112aec5a8df83313816ca2ca8019cffaba5f.tar.xz
mb/*/spd: Use normal binary numbers (0b0010) instead of special format (2b0010)
This format (one hex digit, followed by 'b', followed by binary digits) is arguably useful, but also confusing. Use the more common format instead. Change-Id: Ide7b0a999483a2dd863a70f8aa42cd0865e2babf Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net> Reviewed-on: https://review.coreboot.org/23715 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Nick Vaccaro <nvaccaro@google.com> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/intel/cannonlake_rvp')
-rw-r--r--src/mainboard/intel/cannonlake_rvp/spd/Makefile.inc14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mainboard/intel/cannonlake_rvp/spd/Makefile.inc b/src/mainboard/intel/cannonlake_rvp/spd/Makefile.inc
index 052461fc30..026b541dfb 100644
--- a/src/mainboard/intel/cannonlake_rvp/spd/Makefile.inc
+++ b/src/mainboard/intel/cannonlake_rvp/spd/Makefile.inc
@@ -19,10 +19,10 @@ romstage-y += spd_util.c
SPD_BIN = $(obj)/spd.bin
SPD_SOURCES = empty # 0b000
-SPD_SOURCES += samsung_ddr4_4GB # 1b001 Dual Channel 4GB
-SPD_SOURCES += samsung_lpddr4_8GB # 2b001 Dual Channel 8GB
-SPD_SOURCES += empty # 3b011
-SPD_SOURCES += empty # 4b100
-SPD_SOURCES += empty # 5b101
-SPD_SOURCES += empty # 6b110
-SPD_SOURCES += empty # 7b111
+SPD_SOURCES += samsung_ddr4_4GB # 0b001 Dual Channel 4GB
+SPD_SOURCES += samsung_lpddr4_8GB # 0b001 Dual Channel 8GB
+SPD_SOURCES += empty # 0b011
+SPD_SOURCES += empty # 0b100
+SPD_SOURCES += empty # 0b101
+SPD_SOURCES += empty # 0b110
+SPD_SOURCES += empty # 0b111