[coreboot-gerrit] Patch set updated for coreboot: autoport: add missing parameter for pc_keyboard_init()

Iru Cai (mytbk920423@gmail.com) gerrit at coreboot.org
Thu Jan 26 15:41:54 CET 2017


Iru Cai (mytbk920423 at gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/18242

-gerrit

commit 33992b5644cc49b97ba30bffbd4658139c597c36
Author: Iru Cai <mytbk920423 at gmail.com>
Date:   Thu Jan 26 20:33:29 2017 +0800

    autoport: add missing parameter for pc_keyboard_init()
    
    This fixes the build for the generated code for boards with PS/2
    keyboard, since commit 448e386309c updated the pc_keyboard_init()
    function.
    
    Change-Id: I776b49b847985296eaca4af6d6e49ab5d6abbafe
    Signed-off-by: Iru Cai <mytbk920423 at gmail.com>
---
 util/autoport/ec_fixme.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util/autoport/ec_fixme.go b/util/autoport/ec_fixme.go
index 1e9265a..f06d457 100644
--- a/util/autoport/ec_fixme.go
+++ b/util/autoport/ec_fixme.go
@@ -65,7 +65,7 @@ Method(_PTS,1)
 
 	if hasKeyboard {
 		si.WriteString("#include <drivers/pc80/pc/ps2_controller.asl>\n")
-		MainboardInit += fmt.Sprintf("\tpc_keyboard_init();\n")
+		MainboardInit += fmt.Sprintf("\tpc_keyboard_init(NO_AUX_DEVICE);\n")
 		MainboardIncludes = append(MainboardIncludes, "pc80/keyboard.h")
 	}
 



More information about the coreboot-gerrit mailing list