summaryrefslogtreecommitdiffstats
path: root/include/xen
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-07-09 13:15:03 +0200
committerIngo Molnar <mingo@elte.hu>2008-07-16 11:06:48 +0200
commit9c8a4420444801bd9d818f542eb4a5be8d5687f0 (patch)
tree97a0a954d9574064cf335f96c3f01b28071ddd07 /include/xen
parent51dd660a2cd6eab4d470cfe1009c7f473832b786 (diff)
downloadop-kernel-dev-9c8a4420444801bd9d818f542eb4a5be8d5687f0.zip
op-kernel-dev-9c8a4420444801bd9d818f542eb4a5be8d5687f0.tar.gz
xen64: fix !HVC_XEN build dependency
fix: arch/x86/xen/built-in.o: In function `set_page_prot': enlighten.c:(.text+0x111d): undefined reference to `xen_raw_printk' arch/x86/xen/built-in.o: In function `xen_start_kernel': : undefined reference to `xen_raw_console_write' arch/x86/xen/built-in.o: In function `xen_start_kernel': : undefined reference to `xen_raw_console_write' Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/xen')
-rw-r--r--include/xen/hvc-console.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/xen/hvc-console.h b/include/xen/hvc-console.h
index 98b79bc..c3adde3 100644
--- a/include/xen/hvc-console.h
+++ b/include/xen/hvc-console.h
@@ -5,11 +5,12 @@ extern struct console xenboot_console;
#ifdef CONFIG_HVC_XEN
void xen_console_resume(void);
+void xen_raw_console_write(const char *str);
+void xen_raw_printk(const char *fmt, ...);
#else
static inline void xen_console_resume(void) { }
+static inline void xen_raw_console_write(const char *str) { }
+static inline void xen_raw_printk(const char *fmt, ...) { }
#endif
-void xen_raw_console_write(const char *str);
-void xen_raw_printk(const char *fmt, ...);
-
#endif /* XEN_HVC_CONSOLE_H */
OpenPOWER on IntegriCloud