From e87b2a2d3dc8aa3a10daa1f3d3cf0bc19e3aa158 Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Wed, 22 Sep 2021 22:43:28 +0200 Subject: [PATCH] mb/razor/blade_stealth_kbl: 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: I375ab879dd95d6a7a20644dc36312a1e62f58226 Signed-off-by: Felix Singer Reviewed-on: https://review.coreboot.org/c/coreboot/+/57854 Tested-by: build bot (Jenkins) Reviewed-by: Angel Pons --- .../razer/blade_stealth_kbl/dsdt.asl | 26 ++++++------------- 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/src/mainboard/razer/blade_stealth_kbl/dsdt.asl b/src/mainboard/razer/blade_stealth_kbl/dsdt.asl index 0b2888c828..5fd3569546 100644 --- a/src/mainboard/razer/blade_stealth_kbl/dsdt.asl +++ b/src/mainboard/razer/blade_stealth_kbl/dsdt.asl @@ -12,26 +12,16 @@ DefinitionBlock( ) { #include - - //Platform - #include - - // global NVS and variables - #include - - // CPU #include - - Scope (\_SB) { - Device (PCI0) - { - #include - #include - } - - } - + #include + #include #include + Device (\_SB.PCI0) + { + #include + #include + } + #include "acpi/mainboard.asl" }