Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/62647 )
Change subject: include/spd.h: Fix DDR4_SPD_72B_SO_{R,U}DIMM values ......................................................................
include/spd.h: Fix DDR4_SPD_72B_SO_{R,U}DIMM values
Regarding JEDEC Standard No. 21-C, Release 30, page 13, DDR4_SPD_72B_SO_RDIMM and DDR4_SPD_72B_SO_UDIMM values are respectively 0x08 and 0x09. There is no affected board in coreboot tree.
Signed-off-by: Elyes Haouas ehaouas@noos.fr Change-Id: Id4e9c3814e2e7f379917bf93f7975af3aad31dbb Reviewed-on: https://review.coreboot.org/c/coreboot/+/62647 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Paul Menzel paulepanter@mailbox.org --- M src/include/spd.h 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Paul Menzel: Looks good to me, approved
diff --git a/src/include/spd.h b/src/include/spd.h index 8493d40..ca78d9c 100644 --- a/src/include/spd.h +++ b/src/include/spd.h @@ -236,8 +236,8 @@ DDR4_SPD_LRDIMM = 0x04, DDR4_SPD_MINI_RDIMM = 0x05, DDR4_SPD_MINI_UDIMM = 0x06, - DDR4_SPD_72B_SO_UDIMM = 0x08, - DDR4_SPD_72B_SO_RDIMM = 0x09, + DDR4_SPD_72B_SO_RDIMM = 0x08, + DDR4_SPD_72B_SO_UDIMM = 0x09, DDR4_SPD_16B_SO_DIMM = 0x0c, DDR4_SPD_32B_SO_RDIMM = 0x0d, };
2 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one.