1 /* SPDX-License-Identifier: GPL-2.0 */ << 2 #ifndef XEN_HVC_CONSOLE_H 1 #ifndef XEN_HVC_CONSOLE_H 3 #define XEN_HVC_CONSOLE_H 2 #define XEN_HVC_CONSOLE_H 4 3 5 extern struct console xenboot_console; 4 extern struct console xenboot_console; 6 5 7 #ifdef CONFIG_HVC_XEN 6 #ifdef CONFIG_HVC_XEN 8 void xen_console_resume(void); 7 void xen_console_resume(void); 9 void xen_raw_console_write(const char *str); 8 void xen_raw_console_write(const char *str); 10 __printf(1, 2) 9 __printf(1, 2) 11 void xen_raw_printk(const char *fmt, ...); 10 void xen_raw_printk(const char *fmt, ...); 12 #else 11 #else 13 static inline void xen_console_resume(void) { 12 static inline void xen_console_resume(void) { } 14 static inline void xen_raw_console_write(const 13 static inline void xen_raw_console_write(const char *str) { } 15 static inline __printf(1, 2) 14 static inline __printf(1, 2) 16 void xen_raw_printk(const char *fmt, ...) { } 15 void xen_raw_printk(const char *fmt, ...) { } 17 #endif 16 #endif 18 17 19 #endif /* XEN_HVC_CONSOLE_H */ 18 #endif /* XEN_HVC_CONSOLE_H */ 20 19
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.