diff options
author | Paul Mackerras <paulus@samba.org> | 2005-11-14 01:22:01 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-11-14 01:22:01 -0500 |
commit | c55377ee73f6efeb373ae06f6e918d87660b4852 (patch) | |
tree | 8085472005f758e73d996d2b3e0e91064524d533 /include/asm-powerpc/btext.h | |
parent | 821077b2617ef70662a861393c929d7e47609512 (diff) |
powerpc: Move a bunch of ppc64 headers to include/asm-powerpc
... and also delete some that are no longer used because we already
had an include/asm-powerpc version of the header.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc/btext.h')
-rw-r--r-- | include/asm-powerpc/btext.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/asm-powerpc/btext.h b/include/asm-powerpc/btext.h new file mode 100644 index 000000000000..71cce36bc630 --- /dev/null +++ b/include/asm-powerpc/btext.h | |||
@@ -0,0 +1,27 @@ | |||
1 | /* | ||
2 | * Definitions for using the procedures in btext.c. | ||
3 | * | ||
4 | * Benjamin Herrenschmidt <benh@kernel.crashing.org> | ||
5 | */ | ||
6 | #ifndef __PPC_BTEXT_H | ||
7 | #define __PPC_BTEXT_H | ||
8 | #ifdef __KERNEL__ | ||
9 | |||
10 | extern void btext_clearscreen(void); | ||
11 | extern void btext_flushscreen(void); | ||
12 | |||
13 | extern int boot_text_mapped; | ||
14 | |||
15 | extern int btext_initialize(struct device_node *np); | ||
16 | |||
17 | extern void map_boot_text(void); | ||
18 | extern void init_boot_display(void); | ||
19 | extern void btext_update_display(unsigned long phys, int width, int height, | ||
20 | int depth, int pitch); | ||
21 | |||
22 | extern void btext_drawchar(char c); | ||
23 | extern void btext_drawstring(const char *str); | ||
24 | extern void btext_drawhex(unsigned long v); | ||
25 | |||
26 | #endif /* __KERNEL__ */ | ||
27 | #endif /* __PPC_BTEXT_H */ | ||