From: Rusty Russell Date: Wed, 11 Feb 2015 04:45:10 +0000 (+1030) Subject: lguest: disable ACPI explicitly. X-Git-Tag: v4.0-rc1~44^2~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ee72576c143d8e9081ae1fe8644122454dd323c5;p=platform%2Fkernel%2Flinux-exynos.git lguest: disable ACPI explicitly. Once we add PCI, it starts trying to manage our interrupts. Signed-off-by: Rusty Russell --- diff --git a/arch/x86/lguest/boot.c b/arch/x86/lguest/boot.c index 47ec7f2..aa6e3b4 100644 --- a/arch/x86/lguest/boot.c +++ b/arch/x86/lguest/boot.c @@ -56,6 +56,7 @@ #include #include #include +#include #include #include #include @@ -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