hvc-console.h 328 字节
Newer Older
1 2 3 4 5
#ifndef XEN_HVC_CONSOLE_H
#define XEN_HVC_CONSOLE_H

extern struct console xenboot_console;

6
#ifdef CONFIG_HVC_XEN
7
void xen_console_resume(void);
8 9 10
#else
static inline void xen_console_resume(void) { }
#endif
11

12 13 14
void xen_raw_console_write(const char *str);
void xen_raw_printk(const char *fmt, ...);

15
#endif	/* XEN_HVC_CONSOLE_H */