[coreboot-gerrit] New patch to review for coreboot: autoport: Fix romstage generator

Kyösti Mälkki (kyosti.malkki@gmail.com) gerrit at coreboot.org
Sun Dec 4 10:20:33 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 660ef5f826141e754c5ae7b667777c8c361ba52e
Author: Kyösti Mälkki <kyosti.malkki at gmail.com>
Date:   Sun Dec 4 11:17:07 2016 +0200

    autoport: Fix romstage generator
    
    Protototype 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