diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2008-08-01 01:20:30 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-08-03 22:02:00 -0400 |
commit | b8b572e1015f81b4e748417be2629dfe51ab99f9 (patch) | |
tree | 7df58667d5ed71d6c8f8f4ce40ca16b6fb776d0b /include/asm-powerpc/udbg.h | |
parent | 2b12a4c524812fb3f6ee590a02e65b95c8c32229 (diff) |
powerpc: Move include files to arch/powerpc/include/asm
from include/asm-powerpc. This is the result of a
mkdir arch/powerpc/include/asm
git mv include/asm-powerpc/* arch/powerpc/include/asm
Followed by a few documentation/comment fixups and a couple of places
where <asm-powepc/...> was being used explicitly. Of the latter only
one was outside the arch code and it is a driver only built for powerpc.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc/udbg.h')
-rw-r--r-- | include/asm-powerpc/udbg.h | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/include/asm-powerpc/udbg.h b/include/asm-powerpc/udbg.h deleted file mode 100644 index 6418ceea44b7..000000000000 --- a/include/asm-powerpc/udbg.h +++ /dev/null | |||
@@ -1,55 +0,0 @@ | |||
1 | /* | ||
2 | * (c) 2001, 2006 IBM Corporation. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU General Public License | ||
6 | * as published by the Free Software Foundation; either version | ||
7 | * 2 of the License, or (at your option) any later version. | ||
8 | */ | ||
9 | |||
10 | #ifndef _ASM_POWERPC_UDBG_H | ||
11 | #define _ASM_POWERPC_UDBG_H | ||
12 | #ifdef __KERNEL__ | ||
13 | |||
14 | #include <linux/compiler.h> | ||
15 | #include <linux/init.h> | ||
16 | |||
17 | extern void (*udbg_putc)(char c); | ||
18 | extern int (*udbg_getc)(void); | ||
19 | extern int (*udbg_getc_poll)(void); | ||
20 | |||
21 | extern void udbg_puts(const char *s); | ||
22 | extern int udbg_write(const char *s, int n); | ||
23 | extern int udbg_read(char *buf, int buflen); | ||
24 | |||
25 | extern void register_early_udbg_console(void); | ||
26 | extern void udbg_printf(const char *fmt, ...) | ||
27 | __attribute__ ((format (printf, 1, 2))); | ||
28 | extern void udbg_progress(char *s, unsigned short hex); | ||
29 | |||
30 | extern void udbg_init_uart(void __iomem *comport, unsigned int speed, | ||
31 | unsigned int clock); | ||
32 | extern unsigned int udbg_probe_uart_speed(void __iomem *comport, | ||
33 | unsigned int clock); | ||
34 | |||
35 | struct device_node; | ||
36 | extern void udbg_scc_init(int force_scc); | ||
37 | extern int udbg_adb_init(int force_btext); | ||
38 | extern void udbg_adb_init_early(void); | ||
39 | |||
40 | extern void __init udbg_early_init(void); | ||
41 | extern void __init udbg_init_debug_lpar(void); | ||
42 | extern void __init udbg_init_pmac_realmode(void); | ||
43 | extern void __init udbg_init_maple_realmode(void); | ||
44 | extern void __init udbg_init_pas_realmode(void); | ||
45 | extern void __init udbg_init_iseries(void); | ||
46 | extern void __init udbg_init_rtas_panel(void); | ||
47 | extern void __init udbg_init_rtas_console(void); | ||
48 | extern void __init udbg_init_debug_beat(void); | ||
49 | extern void __init udbg_init_btext(void); | ||
50 | extern void __init udbg_init_44x_as1(void); | ||
51 | extern void __init udbg_init_40x_realmode(void); | ||
52 | extern void __init udbg_init_cpm(void); | ||
53 | |||
54 | #endif /* __KERNEL__ */ | ||
55 | #endif /* _ASM_POWERPC_UDBG_H */ | ||