diff options
author | Michael Ellerman <michael@ellerman.id.au> | 2008-04-15 23:51:48 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-04-16 20:00:59 -0400 |
commit | 21cf91338fabe649ae3744429e13b61da2a17a6a (patch) | |
tree | 4af5f64f17caa2273de7aaf7cc116376d12cc809 /arch | |
parent | 37ddd5d053c57fee798d72fa9c18660f59a9299b (diff) |
[POWERPC] Move prototype for find_udbg_vterm() into a header file
Move the prototype for find_udbg_vterm() into pseries.h, removing
it from setup.c.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/platforms/pseries/lpar.c | 1 | ||||
-rw-r--r-- | arch/powerpc/platforms/pseries/pseries.h | 2 | ||||
-rw-r--r-- | arch/powerpc/platforms/pseries/setup.c | 3 |
3 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/platforms/pseries/lpar.c b/arch/powerpc/platforms/pseries/lpar.c index 233d9be25f49..8a204523afbc 100644 --- a/arch/powerpc/platforms/pseries/lpar.c +++ b/arch/powerpc/platforms/pseries/lpar.c | |||
@@ -40,6 +40,7 @@ | |||
40 | #include <asm/smp.h> | 40 | #include <asm/smp.h> |
41 | 41 | ||
42 | #include "plpar_wrappers.h" | 42 | #include "plpar_wrappers.h" |
43 | #include "pseries.h" | ||
43 | 44 | ||
44 | #ifdef DEBUG_LOW | 45 | #ifdef DEBUG_LOW |
45 | #define DBG_LOW(fmt...) do { udbg_printf(fmt); } while(0) | 46 | #define DBG_LOW(fmt...) do { udbg_printf(fmt); } while(0) |
diff --git a/arch/powerpc/platforms/pseries/pseries.h b/arch/powerpc/platforms/pseries/pseries.h index 61136d019554..9e17c0d2a0c8 100644 --- a/arch/powerpc/platforms/pseries/pseries.h +++ b/arch/powerpc/platforms/pseries/pseries.h | |||
@@ -38,4 +38,6 @@ extern void pSeries_final_fixup(void); | |||
38 | /* Poweron flag used for enabling auto ups restart */ | 38 | /* Poweron flag used for enabling auto ups restart */ |
39 | extern unsigned long rtas_poweron_auto; | 39 | extern unsigned long rtas_poweron_auto; |
40 | 40 | ||
41 | extern void find_udbg_vterm(void); | ||
42 | |||
41 | #endif /* _PSERIES_PSERIES_H */ | 43 | #endif /* _PSERIES_PSERIES_H */ |
diff --git a/arch/powerpc/platforms/pseries/setup.c b/arch/powerpc/platforms/pseries/setup.c index 90555a39fe62..fccca89ee04e 100644 --- a/arch/powerpc/platforms/pseries/setup.c +++ b/arch/powerpc/platforms/pseries/setup.c | |||
@@ -76,9 +76,6 @@ | |||
76 | #define DBG(fmt...) | 76 | #define DBG(fmt...) |
77 | #endif | 77 | #endif |
78 | 78 | ||
79 | /* move those away to a .h */ | ||
80 | extern void find_udbg_vterm(void); | ||
81 | |||
82 | int fwnmi_active; /* TRUE if an FWNMI handler is present */ | 79 | int fwnmi_active; /* TRUE if an FWNMI handler is present */ |
83 | 80 | ||
84 | static void pseries_shared_idle_sleep(void); | 81 | static void pseries_shared_idle_sleep(void); |