diff options
author | Iru Cai <mytbk920423@gmail.com> | 2017-01-26 20:33:29 +0800 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-01-29 00:36:24 +0100 |
commit | 8bf53a9f4e70760622c0a2e94185bc881bca14d9 (patch) | |
tree | 8b8a516a52cd5a5176a32784eb4ca2ac42ddf171 /util/autoport | |
parent | f224e836c0236621b52ea7d3c1118d2053df3537 (diff) |
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@gmail.com>
Reviewed-on: https://review.coreboot.org/18242
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'util/autoport')
-rw-r--r-- | util/autoport/ec_fixme.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/autoport/ec_fixme.go b/util/autoport/ec_fixme.go index 1e9265a924..f06d4570d4 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") } |