summaryrefslogtreecommitdiffstats
path: root/include/asm-powerpc/udbg.h
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt2005-11-30 06:54:12 +0100
committerPaul Mackerras2006-01-09 04:51:22 +0100
commitbb6b9b28d6847bc71f910e2e82c9040ff4b97ec0 (patch)
tree97b0acaade2d32ddb37147ff5112318f6c292cf8 /include/asm-powerpc/udbg.h
parent[PATCH] powerpc: powermac adb fix udbg_adb_use_btext warning (diff)
downloadkernel-qcow2-linux-bb6b9b28d6847bc71f910e2e82c9040ff4b97ec0.tar.gz
kernel-qcow2-linux-bb6b9b28d6847bc71f910e2e82c9040ff4b97ec0.tar.xz
kernel-qcow2-linux-bb6b9b28d6847bc71f910e2e82c9040ff4b97ec0.zip
[PATCH] powerpc: udbg updates
The udbg low level io layer has an issue with udbg_getc() returning a char (unsigned on ppc) instead of an int, thus the -1 if you had no available input device could end up turned into 0xff, filling your display with bogus characters. This fixes it, along with adding a little blob to xmon to do a delay before exiting when getting an EOF and fixing the detection of ADB keyboards in udbg_adb.c Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc/udbg.h')
-rw-r--r--include/asm-powerpc/udbg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-powerpc/udbg.h b/include/asm-powerpc/udbg.h
index 8d6b44c8f35d..58cdc883e38c 100644
--- a/include/asm-powerpc/udbg.h
+++ b/include/asm-powerpc/udbg.h
@@ -14,7 +14,7 @@
#include <linux/init.h>
extern void (*udbg_putc)(char c);
-extern char (*udbg_getc)(void);
+extern int (*udbg_getc)(void);
extern int (*udbg_getc_poll)(void);
extern void udbg_puts(const char *s);