aboutsummaryrefslogtreecommitdiff
path: root/src/pc80
diff options
context:
space:
mode:
Diffstat (limited to 'src/pc80')
-rw-r--r--src/pc80/keyboard.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/pc80/keyboard.c b/src/pc80/keyboard.c
index ccec00488c..c5e384800f 100644
--- a/src/pc80/keyboard.c
+++ b/src/pc80/keyboard.c
@@ -43,8 +43,10 @@ static void pc_keyboard_init(struct pc_keyboard *keyboard)
}
/* read self-test result, 0x55 should be returned form 0x60 */
- if ((regval = inb(0x60) != 0x55))
+ if ((regval = inb(0x60) != 0x55)) {
+ printk_err("Keyboard selftest failed\n");
return;
+ }
/* enable keyboard interface */
outb(0x60, 0x64);