diff options
author | Felix Singer <felixsinger@posteo.net> | 2021-12-28 16:57:24 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2021-12-29 18:30:09 +0000 |
commit | 7f25f14e000297a445e21a2d18f7be95232bed32 (patch) | |
tree | 18937c8706bd87244fb9cebf430f1411cf47a3b0 /src/mainboard/hp | |
parent | 4878940de32bbdf4cb121a64dbe1baa15d10b0b8 (diff) |
mb/hp/pavilion_m6_1035dx/acpi: Use Printf() for debug prints
Change-Id: Idf84b7333e94dfa9caf0aa477b87e3156c24d5cd
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60421
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Diffstat (limited to 'src/mainboard/hp')
-rw-r--r-- | src/mainboard/hp/pavilion_m6_1035dx/acpi/gpe.asl | 6 | ||||
-rw-r--r-- | src/mainboard/hp/pavilion_m6_1035dx/acpi/mainboard.asl | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/hp/pavilion_m6_1035dx/acpi/gpe.asl b/src/mainboard/hp/pavilion_m6_1035dx/acpi/gpe.asl index e296ff90eb..ff760b3380 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 @@ Scope(\_GPE) { /* Start Scope GPE */ /* USB controller PME# */ Method(_L0B) { - Debug = "USB PME" + Printf ("USB PME") /* Notify devices of wake event */ Notify(\_SB.PCI0.UOH1, 0x02) Notify(\_SB.PCI0.UOH2, 0x02) @@ -38,7 +38,7 @@ Scope(\_GPE) { /* Start Scope GPE */ /* Lid switch opened or closed */ Method(_L16) { - Debug = "Lid status changed" + Printf ("Lid status changed") /* Flip trigger polarity */ LPOL = ~LPOL /* Notify lid object of status change */ @@ -47,7 +47,7 @@ Scope(\_GPE) { /* Start Scope GPE */ /* GPIO0 or GEvent8 event */ Method(_L18) { - Debug = "PCI bridge wake event" + Printf ("PCI bridge wake event") /* Notify PCI bridges of wake event */ Notify(\_SB.PCI0.PBR4, 0x02) Notify(\_SB.PCI0.PBR5, 0x02) diff --git a/src/mainboard/hp/pavilion_m6_1035dx/acpi/mainboard.asl b/src/mainboard/hp/pavilion_m6_1035dx/acpi/mainboard.asl index b11ad68e10..467a4f56de 100644 --- a/src/mainboard/hp/pavilion_m6_1035dx/acpi/mainboard.asl +++ b/src/mainboard/hp/pavilion_m6_1035dx/acpi/mainboard.asl @@ -37,7 +37,7 @@ */ Method (PNOT) { - Debug = "Received PNOT call (probably from EC)" + Printf ("Received PNOT call (probably from EC)") /* TODO: Implement this */ } |