2007-07-18 01:37:06 +00:00
|
|
|
#ifndef XEN_HVC_CONSOLE_H
|
|
|
|
#define XEN_HVC_CONSOLE_H
|
|
|
|
|
|
|
|
extern struct console xenboot_console;
|
|
|
|
|
2008-05-29 07:31:50 +00:00
|
|
|
#ifdef CONFIG_HVC_XEN
|
2008-05-26 22:31:25 +00:00
|
|
|
void xen_console_resume(void);
|
2008-07-09 11:15:03 +00:00
|
|
|
void xen_raw_console_write(const char *str);
|
2011-06-12 16:21:13 +00:00
|
|
|
__attribute__((format(printf, 1, 2)))
|
2008-07-09 11:15:03 +00:00
|
|
|
void xen_raw_printk(const char *fmt, ...);
|
2008-05-29 07:31:50 +00:00
|
|
|
#else
|
|
|
|
static inline void xen_console_resume(void) { }
|
2008-07-09 11:15:03 +00:00
|
|
|
static inline void xen_raw_console_write(const char *str) { }
|
2011-06-12 16:21:13 +00:00
|
|
|
static inline __attribute__((format(printf, 1, 2)))
|
|
|
|
void xen_raw_printk(const char *fmt, ...) { }
|
2008-05-29 07:31:50 +00:00
|
|
|
#endif
|
2008-05-26 22:31:25 +00:00
|
|
|
|
2007-07-18 01:37:06 +00:00
|
|
|
#endif /* XEN_HVC_CONSOLE_H */
|