[coreboot-gerrit] Patch set updated for coreboot: autoport: Fix romstage generator

Kyösti Mälkki (kyosti.malkki@gmail.com) gerrit at coreboot.org
Tue Dec 6 13:40:09 CET 2016


Kyösti Mälkki (kyosti.malkki at gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17711

-gerrit

commit 9fdcc181115621a4acc1562b85f720af41d755ae
Author: Kyösti Mälkki <kyosti.malkki at gmail.com>
Date:   Sun Dec 4 11:17:07 2016 +0200

    autoport: Fix romstage generator
    
    Prototype changed here:
       e258b9a intel sandy/ivy: Improve DIMM replacement detection
    
    Change-Id: Id79238db2e497b9163f3bd1b1d5d4bc11fe4da9e
    Signed-off-by: Kyösti Mälkki <kyosti.malkki at gmail.com>
---
 util/autoport/bd82x6x.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/util/autoport/bd82x6x.go b/util/autoport/bd82x6x.go
index 1252292..ed94df7 100644
--- a/util/autoport/bd82x6x.go
+++ b/util/autoport/bd82x6x.go
@@ -367,11 +367,11 @@ void mainboard_config_superio(void)
 }
 
 /* FIXME: Put proper SPD map here. */
-void mainboard_get_spd(spd_raw_data *spd)
+void mainboard_get_spd(spd_raw_data *spd, bool id_only)
 {
 `)
 	for i, spd := range guessedMap {
-		fmt.Fprintf(sb, "\tread_spd(&spd[%d], 0x%02x);\n", i, spd)
+		fmt.Fprintf(sb, "\tread_spd(&spd[%d], 0x%02x, id_only);\n", i, spd)
 	}
 	sb.WriteString("}\n")
 



More information about the coreboot-gerrit mailing list