|
@@ -1,5 +1,7 @@
|
|
|
#include <linux/hardirq.h>
|
|
|
|
|
|
+#include <asm/x86_init.h>
|
|
|
+
|
|
|
#include <xen/interface/xen.h>
|
|
|
#include <xen/interface/sched.h>
|
|
|
#include <xen/interface/vcpu.h>
|
|
@@ -112,8 +114,6 @@ static void xen_halt(void)
|
|
|
}
|
|
|
|
|
|
static const struct pv_irq_ops xen_irq_ops __initdata = {
|
|
|
- .init_IRQ = xen_init_IRQ,
|
|
|
-
|
|
|
.save_fl = PV_CALLEE_SAVE(xen_save_fl),
|
|
|
.restore_fl = PV_CALLEE_SAVE(xen_restore_fl),
|
|
|
.irq_disable = PV_CALLEE_SAVE(xen_irq_disable),
|
|
@@ -129,4 +129,5 @@ static const struct pv_irq_ops xen_irq_ops __initdata = {
|
|
|
void __init xen_init_irq_ops()
|
|
|
{
|
|
|
pv_irq_ops = xen_irq_ops;
|
|
|
+ x86_init.irqs.intr_init = xen_init_IRQ;
|
|
|
}
|