2007-07-18 03:37:06 +02:00
|
|
|
#ifndef XEN_HVC_CONSOLE_H
|
|
|
|
#define XEN_HVC_CONSOLE_H
|
|
|
|
|
|
|
|
extern struct console xenboot_console;
|
|
|
|
|
2008-05-29 09:31:50 +02:00
|
|
|
#ifdef CONFIG_HVC_XEN
|
2008-05-27 00:31:25 +02:00
|
|
|
void xen_console_resume(void);
|
2008-07-09 13:15:03 +02:00
|
|
|
void xen_raw_console_write(const char *str);
|
|
|
|
void xen_raw_printk(const char *fmt, ...);
|
2008-05-29 09:31:50 +02:00
|
|
|
#else
|
|
|
|
static inline void xen_console_resume(void) { }
|
2008-07-09 13:15:03 +02:00
|
|
|
static inline void xen_raw_console_write(const char *str) { }
|
|
|
|
static inline void xen_raw_printk(const char *fmt, ...) { }
|
2008-05-29 09:31:50 +02:00
|
|
|
#endif
|
2008-05-27 00:31:25 +02:00
|
|
|
|
2007-07-18 03:37:06 +02:00
|
|
|
#endif /* XEN_HVC_CONSOLE_H */
|