hvc-console.h 518 B

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