1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef XEN_HVC_CONSOLE_H
3 #define XEN_HVC_CONSOLE_H
5 extern struct console xenboot_console;
8 void xen_console_resume(void);
9 void xen_raw_console_write(const char *str);
11 void xen_raw_printk(const char *fmt, ...);
13 static inline void xen_console_resume(void) { }
14 static inline void xen_raw_console_write(const char *str) { }
15 static inline __printf(1, 2)
16 void xen_raw_printk(const char *fmt, ...) { }
19 #endif /* XEN_HVC_CONSOLE_H */