diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-12-25 17:22:41 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-12-29 16:30:15 +0000 |
commit | fcdb03d07957375c5f842a2ca3d5d2a0ab2f34d3 (patch) | |
tree | 181d5640b61354cfb94b576ac9b5dc4e4a127a9c /src/mainboard/system76/kbl-u/acpi/lid.asl | |
parent | 7fb5bf8893fe311a9ce33f9125b2e111952092c7 (diff) |
{ec,mb}/system76/acpi: Use Printf() for debug prints
Change-Id: Ia5ae30a1ee976b8059936027b28ac56f37279217
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71516
Reviewed-by: Tim Crawford <tcrawford@system76.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/system76/kbl-u/acpi/lid.asl')
-rw-r--r-- | src/mainboard/system76/kbl-u/acpi/lid.asl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/system76/kbl-u/acpi/lid.asl b/src/mainboard/system76/kbl-u/acpi/lid.asl index 067c96f32b..45ed851850 100644 --- a/src/mainboard/system76/kbl-u/acpi/lid.asl +++ b/src/mainboard/system76/kbl-u/acpi/lid.asl @@ -6,7 +6,7 @@ Device (LID0) Name (_PRW, Package () { 0x13 /* GPP_C19 */, 3 }) Method (_LID, 0, NotSerialized) { - DEBUG = "LID: _LID" + Printf ("LID: _LID") If (^^PCI0.LPCB.EC0.ECOK) { Return (^^PCI0.LPCB.EC0.LSTE) } Else { @@ -15,7 +15,7 @@ Device (LID0) } Method (_PSW, 1, NotSerialized) { - DEBUG = Concatenate("LID: _PSW: ", ToHexString(Arg0)) + Printf ("LID: _PSW: %o", ToHexString(Arg0)) If (^^PCI0.LPCB.EC0.ECOK) { ^^PCI0.LPCB.EC0.LWKE = Arg0 } |