Skip to content

Commit

Permalink
xen64: fix !HVC_XEN build dependency
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
Ingo Molnar committed Jul 16, 2008
1 parent 51dd660 commit 9c8a442
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions include/xen/hvc-console.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

0 comments on commit 9c8a442

Please sign in to comment.