HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/46080 )
Change subject: mb/hp: Convert to ASL 2.0 syntax ......................................................................
mb/hp: Convert to ASL 2.0 syntax
Change-Id: Id48df4fa0f8e5486636292ad11b8a86e71db4b17 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/mainboard/hp/pavilion_m6_1035dx/acpi/gpe.asl 1 file changed, 4 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/80/46080/1
diff --git a/src/mainboard/hp/pavilion_m6_1035dx/acpi/gpe.asl b/src/mainboard/hp/pavilion_m6_1035dx/acpi/gpe.asl index 1e15d7a..e296ff9 100644 --- a/src/mainboard/hp/pavilion_m6_1035dx/acpi/gpe.asl +++ b/src/mainboard/hp/pavilion_m6_1035dx/acpi/gpe.asl @@ -15,7 +15,7 @@
/* USB controller PME# */ Method(_L0B) { - Store("USB PME", Debug) + Debug = "USB PME" /* Notify devices of wake event */ Notify(_SB.PCI0.UOH1, 0x02) Notify(_SB.PCI0.UOH2, 0x02) @@ -38,16 +38,16 @@
/* Lid switch opened or closed */ Method(_L16) { - Store("Lid status changed", Debug) + Debug = "Lid status changed" /* Flip trigger polarity */ - Not(LPOL, LPOL) + LPOL = ~LPOL /* Notify lid object of status change */ Notify(_SB.LID, 0x80) }
/* GPIO0 or GEvent8 event */ Method(_L18) { - Store("PCI bridge wake event", Debug) + Debug = "PCI bridge wake event" /* Notify PCI bridges of wake event */ Notify(_SB.PCI0.PBR4, 0x02) Notify(_SB.PCI0.PBR5, 0x02)