diff options
author | Milton Miller <miltonm@bga.com> | 2005-09-05 21:56:42 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-09-06 02:07:36 -0400 |
commit | c8f1c8be629ee34991fdba8bfe46a5c455393209 (patch) | |
tree | 66f218e641e87a0ca9ade7601345229b6557761e /include/asm-ppc64 | |
parent | 7f853352e79bf57c4ee279b7458ed0c072e2be76 (diff) |
[PATCH] ppc64: Take udbg out of ppc_md
Take udbg out of ppc_md. Allows us to not overwrite early udbg inits
when assigning ppc_md.
Signed-off-by: Milton Miller <miltonm@bga.com>
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-ppc64')
-rw-r--r-- | include/asm-ppc64/machdep.h | 5 | ||||
-rw-r--r-- | include/asm-ppc64/udbg.h | 25 |
2 files changed, 14 insertions, 16 deletions
diff --git a/include/asm-ppc64/machdep.h b/include/asm-ppc64/machdep.h index ff2c9287d3b6..9a1ef4427ed2 100644 --- a/include/asm-ppc64/machdep.h +++ b/include/asm-ppc64/machdep.h | |||
@@ -103,11 +103,6 @@ struct machdep_calls { | |||
103 | 103 | ||
104 | void (*progress)(char *, unsigned short); | 104 | void (*progress)(char *, unsigned short); |
105 | 105 | ||
106 | /* Debug interface. Low level I/O to some terminal device */ | ||
107 | void (*udbg_putc)(unsigned char c); | ||
108 | unsigned char (*udbg_getc)(void); | ||
109 | int (*udbg_getc_poll)(void); | ||
110 | |||
111 | /* Interface for platform error logging */ | 106 | /* Interface for platform error logging */ |
112 | void (*log_error)(char *buf, unsigned int err_type, int fatal); | 107 | void (*log_error)(char *buf, unsigned int err_type, int fatal); |
113 | 108 | ||
diff --git a/include/asm-ppc64/udbg.h b/include/asm-ppc64/udbg.h index a6e04d014b2b..2cf1e87fd7d2 100644 --- a/include/asm-ppc64/udbg.h +++ b/include/asm-ppc64/udbg.h | |||
@@ -12,17 +12,20 @@ | |||
12 | * 2 of the License, or (at your option) any later version. | 12 | * 2 of the License, or (at your option) any later version. |
13 | */ | 13 | */ |
14 | 14 | ||
15 | void udbg_init_uart(void __iomem *comport, unsigned int speed); | 15 | extern void (*udbg_putc)(unsigned char c); |
16 | void udbg_putc(unsigned char c); | 16 | extern unsigned char (*udbg_getc)(void); |
17 | unsigned char udbg_getc(void); | 17 | extern int (*udbg_getc_poll)(void); |
18 | int udbg_getc_poll(void); | 18 | |
19 | void udbg_puts(const char *s); | 19 | extern void udbg_puts(const char *s); |
20 | int udbg_write(const char *s, int n); | 20 | extern int udbg_write(const char *s, int n); |
21 | int udbg_read(char *buf, int buflen); | 21 | extern int udbg_read(char *buf, int buflen); |
22 | |||
22 | struct console; | 23 | struct console; |
23 | void udbg_console_write(struct console *con, const char *s, unsigned int n); | 24 | extern void udbg_console_write(struct console *con, const char *s, unsigned int n); |
24 | void udbg_printf(const char *fmt, ...); | 25 | extern void udbg_printf(const char *fmt, ...); |
25 | void udbg_ppcdbg(unsigned long flags, const char *fmt, ...); | 26 | extern void udbg_ppcdbg(unsigned long flags, const char *fmt, ...); |
26 | unsigned long udbg_ifdebug(unsigned long flags); | 27 | extern unsigned long udbg_ifdebug(unsigned long flags); |
28 | |||
27 | 29 | ||
30 | extern void udbg_init_uart(void __iomem *comport, unsigned int speed); | ||
28 | #endif | 31 | #endif |