aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2021-09-22 22:49:56 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-09-27 13:25:32 +0000
commitce9d41fe2d8aa764d5970f5509a3b75a79cbed3b (patch)
tree47613b7ba3af2c37ce469840f60514907b3a4a70 /src
parente87b2a2d3dc8aa3a10daa1f3d3cf0bc19e3aa158 (diff)
mb/51nb/x210: Clean up dsdt.asl
Move includes using library paths to the top and remove unnecessary comments. Also, get rid of that unnecessary _SB scope. Use an absolute path for the PCI0 device instead. Change-Id: I7255ac1ec6c43dd4b21325ae60e117458bea956d Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/57855 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/51nb/x210/dsdt.asl10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/mainboard/51nb/x210/dsdt.asl b/src/mainboard/51nb/x210/dsdt.asl
index a9ed9198c1..398611f6a4 100644
--- a/src/mainboard/51nb/x210/dsdt.asl
+++ b/src/mainboard/51nb/x210/dsdt.asl
@@ -12,11 +12,9 @@ DefinitionBlock(
)
{
#include <acpi/dsdt_top.asl>
- #include "acpi/platform.asl"
-
- #include <soc/intel/skylake/acpi/globalnvs.asl>
-
#include <cpu/intel/common/acpi/cpu.asl>
+ #include <soc/intel/skylake/acpi/globalnvs.asl>
+ #include <southbridge/intel/common/acpi/sleepstates.asl>
Device (\_SB.PCI0)
{
@@ -25,8 +23,6 @@ DefinitionBlock(
#include "acpi/graphics.asl"
}
- #include <southbridge/intel/common/acpi/sleepstates.asl>
-
- // Mainboard specific
#include "acpi/mainboard.asl"
+ #include "acpi/platform.asl"
}