Commit ee72576c authored by Rusty Russell's avatar Rusty Russell

lguest: disable ACPI explicitly.

Once we add PCI, it starts trying to manage our interrupts.
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent 7313d521
......@@ -56,6 +56,7 @@
#include <linux/virtio_console.h>
#include <linux/pm.h>
#include <linux/export.h>
#include <asm/acpi.h>
#include <asm/apic.h>
#include <asm/lguest.h>
#include <asm/paravirt.h>
......@@ -1428,6 +1429,9 @@ __init void lguest_init(void)
/* Register our very early console. */
virtio_cons_early_init(early_put_chars);
/* Don't let ACPI try to control our PCI interrupts. */
disable_acpi();
/*
* Last of all, we set the power management poweroff hook to point to
* the Guest routine to power off, and the reboot hook to our restart
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment