diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2023-12-19 22:46:39 +0100 |
---|---|---|
committer | Shelley Chen <shchen@google.com> | 2023-12-26 17:02:57 +0000 |
commit | f20c355a1f7b22c8d8540318c5137e438538d63e (patch) | |
tree | 29e73bf26ebb11ad83a97e7dd7c016a4c9f8de2a | |
parent | 93ffdee5ed1e6ffc2c2f16d0b53a95c2b8b8d57b (diff) |
mb/google/zork/dsdt: move LIDS object right after dsdt_top.asl
This is a preparation to make the next patch result in identical images
for timeless builds and also aligns Zork's DSDT more with Guybrush's
DSDT.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I46835b404be13f150c68680afb3fcc78639e08f9
Reviewed-on: https://review.coreboot.org/c/coreboot/+/79652
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <ericllai@google.com>
-rw-r--r-- | src/mainboard/google/zork/dsdt.asl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainboard/google/zork/dsdt.asl b/src/mainboard/google/zork/dsdt.asl index d715cde4ef..dc4322daee 100644 --- a/src/mainboard/google/zork/dsdt.asl +++ b/src/mainboard/google/zork/dsdt.asl @@ -15,10 +15,11 @@ DefinitionBlock ( ) { /* Start of ASL file */ #include <acpi/dsdt_top.asl> - #include <globalnvs.asl> Name(LIDS, 0) + #include <globalnvs.asl> + /* Power state notification to ALIB */ #include <pnot.asl> |