hvc-console.h 328 B

123456789101112131415
  1. #ifndef XEN_HVC_CONSOLE_H
  2. #define XEN_HVC_CONSOLE_H
  3. extern struct console xenboot_console;
  4. #ifdef CONFIG_HVC_XEN
  5. void xen_console_resume(void);
  6. #else
  7. static inline void xen_console_resume(void) { }
  8. #endif
  9. void xen_raw_console_write(const char *str);
  10. void xen_raw_printk(const char *fmt, ...);
  11. #endif /* XEN_HVC_CONSOLE_H */