Felix Singer has submitted this change. ( https://review.coreboot.org/c/coreboot/+/60421 )
Change subject: mb/hp/pavilion_m6_1035dx/acpi: Use Printf() for debug prints ......................................................................
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 --- M src/mainboard/hp/pavilion_m6_1035dx/acpi/gpe.asl M src/mainboard/hp/pavilion_m6_1035dx/acpi/mainboard.asl 2 files changed, 4 insertions(+), 4 deletions(-)
Approvals: build bot (Jenkins): Verified HAOUAS Elyes: Looks good to me, approved
diff --git a/src/mainboard/hp/pavilion_m6_1035dx/acpi/gpe.asl b/src/mainboard/hp/pavilion_m6_1035dx/acpi/gpe.asl index e296ff9..ff760b3 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) { - 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 @@
/* 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 @@
/* 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 b11ad68..467a4f5 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 */ }