diff options
Diffstat (limited to 'include/xen')
-rw-r--r-- | include/xen/events.h | 1 | ||||
-rw-r--r-- | include/xen/hvc-console.h | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/xen/events.h b/include/xen/events.h index 7abe4ddfac54..2bde54d29be5 100644 --- a/include/xen/events.h +++ b/include/xen/events.h | |||
@@ -13,6 +13,7 @@ enum ipi_vector { | |||
13 | XEN_NR_IPIS, | 13 | XEN_NR_IPIS, |
14 | }; | 14 | }; |
15 | 15 | ||
16 | int bind_evtchn_to_irq(unsigned int evtchn); | ||
16 | int bind_evtchn_to_irqhandler(unsigned int evtchn, | 17 | int bind_evtchn_to_irqhandler(unsigned int evtchn, |
17 | irq_handler_t handler, | 18 | irq_handler_t handler, |
18 | unsigned long irqflags, const char *devname, | 19 | unsigned long irqflags, const char *devname, |
diff --git a/include/xen/hvc-console.h b/include/xen/hvc-console.h new file mode 100644 index 000000000000..21c0ecfd786d --- /dev/null +++ b/include/xen/hvc-console.h | |||
@@ -0,0 +1,6 @@ | |||
1 | #ifndef XEN_HVC_CONSOLE_H | ||
2 | #define XEN_HVC_CONSOLE_H | ||
3 | |||
4 | extern struct console xenboot_console; | ||
5 | |||
6 | #endif /* XEN_HVC_CONSOLE_H */ | ||