aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/kontron/986lcd-m/dsdt.asl
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2009-10-26 17:12:21 +0000
committerStefan Reinauer <stepan@openbios.org>2009-10-26 17:12:21 +0000
commitaca6ec66bf7048e77ec960bb751a04e6b0528c70 (patch)
treef8fbc185686787e9453f0e6f229d88f38561333d /src/mainboard/kontron/986lcd-m/dsdt.asl
parent3b314023802c7429012e5f09652047e0b32fb97a (diff)
Kontron 986LCD-M update
- run ACPI code through preprocessor so we get the same values as the C code - fix PCIe x16 slot - fix ICH7 Azalia/HDA driver - SMI/GNVS update security fix (only allow struct pointer update once) - ACPI updates - IDE driver fixes - add cmos options for disabling onboard ethernet and controlling system fan Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4861 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/kontron/986lcd-m/dsdt.asl')
-rw-r--r--src/mainboard/kontron/986lcd-m/dsdt.asl14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mainboard/kontron/986lcd-m/dsdt.asl b/src/mainboard/kontron/986lcd-m/dsdt.asl
index f12e16b9a4..04a658fe90 100644
--- a/src/mainboard/kontron/986lcd-m/dsdt.asl
+++ b/src/mainboard/kontron/986lcd-m/dsdt.asl
@@ -29,24 +29,24 @@ DefinitionBlock(
)
{
// Some generic macros
- Include ("acpi/platform.asl")
+ #include "acpi/platform.asl"
// global NVS and variables
- Include ("../../../southbridge/intel/i82801gx/acpi/globalnvs.asl")
+ #include "../../../southbridge/intel/i82801gx/acpi/globalnvs.asl"
// General Purpose Events
- //include ("acpi/gpe.asl")
+ //#include "acpi/gpe.asl"
- //include ("acpi/thermal.asl")
+ //#include "acpi/thermal.asl"
Scope (\_SB) {
Device (PCI0)
{
- Include ("../../../northbridge/intel/i945/acpi/i945.asl")
- include ("../../../southbridge/intel/i82801gx/acpi/ich7.asl")
+ #include "../../../northbridge/intel/i945/acpi/i945.asl"
+ #include "../../../southbridge/intel/i82801gx/acpi/ich7.asl"
}
}
/* Chipset specific sleep states */
- include ("../../../southbridge/intel/i82801gx/acpi/sleepstates.asl")
+ #include "../../../southbridge/intel/i82801gx/acpi/sleepstates.asl"
}