summaryrefslogtreecommitdiffstats
path: root/src/include/types.h
diff options
context:
space:
mode:
authorVladimir Serbinenko <phcoder@gmail.com>2014-01-26 03:55:01 +0100
committerVladimir Serbinenko <phcoder@gmail.com>2014-01-26 17:39:42 +0100
commit63e35f207c1dd80d9293b42a761e548d282a5260 (patch)
tree2fe4a14eeb8db78bdb0326c674e59e224f3c0762 /src/include/types.h
parente0553b436bb63858556abc1e85d68f8aad059f44 (diff)
downloadcoreboot-63e35f207c1dd80d9293b42a761e548d282a5260.tar.gz
coreboot-63e35f207c1dd80d9293b42a761e548d282a5260.tar.bz2
coreboot-63e35f207c1dd80d9293b42a761e548d282a5260.zip
pc80/keyboard: Ignore interface test failure.
On Asus A8N-E this test fails but if failure is ignored keyboard works. Change-Id: Ifeeff2f41537b35bc90a679f956fea830b94292c Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/4816 Tested-by: build bot (Jenkins) Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'src/include/types.h')
-rw-r--r--src/include/types.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/types.h b/src/include/types.h
index d1f991eb5dae..ef5edc1781dd 100644
--- a/src/include/types.h
+++ b/src/include/types.h
@@ -41,6 +41,10 @@ enum cb_err {
CB_CMOS_OPTION_NOT_FOUND = -102, /**< Option string not found */
CB_CMOS_ACCESS_ERROR = -103, /**< CMOS access error */
CB_CMOS_CHECKSUM_INVALID = -104, /**< CMOS checksum is invalid */
+
+ /* Keyboard test failures */
+ CB_KBD_CONTROLLER_FAILURE = -200,
+ CB_KBD_INTERFACE_FAILURE = -201
};
#endif /* __TYPES_H */