Merge to Fedora kernel-2.6.18-1.2224_FC5 patched with stable patch-2.6.18.1-vs2.0...
[linux-2.6.git] / include / xen / xencons.h
1 #ifndef __ASM_XENCONS_H__
2 #define __ASM_XENCONS_H__
3
4 struct dom0_vga_console_info;
5 void dom0_init_screen_info(const struct dom0_vga_console_info *info);
6
7 void xencons_force_flush(void);
8 void xencons_resume(void);
9
10 /* Interrupt work hooks. Receive data, or kick data out. */
11 void xencons_rx(char *buf, unsigned len, struct pt_regs *regs);
12 void xencons_tx(void);
13
14 int xencons_ring_init(void);
15 int xencons_ring_send(const char *data, unsigned len);
16
17 #endif /* __ASM_XENCONS_H__ */