Skip to content

Commit c67ae5b

Browse files
committed
ignore the ACPI error on PTL
The same error occurred in LNL and was included in the ignored list. Hence, PTL is being added to the same list Signed-off-by: harajend <hariprasad.rajendra@intel.com>
1 parent c9b03e5 commit c67ae5b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

tools/sof-dump-status.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ def __init__(self):
4747
"0x7728":"arl",
4848
# pci-lnl.c
4949
"0xa828":"lnl",
50+
# pci-ptl.c
51+
"0xe428":"ptl",
5052
# Other PCI IDs
5153
"0x9d71":"kbl", "0x9d70":"skl", "0x33c8":"hsw",
5254
"0x3438":"bdw", "0x160c":"bdw", "0x0f04":"byt", "0x2284":"cht"

tools/sof-kernel-log-check.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,8 @@ case "$platform" in
304304
# i2c_hid_acpi i2c-VEN_0488:00: i2c_hid_get_input: incomplete report (20/42405)
305305
ignore_str="$ignore_str""|i2c_hid_acpi i2c-VEN_0488:00: i2c_hid_get_input: incomplete report"
306306
;;
307-
lnl)
308-
# ignore the ACPI error on LNL.
307+
lnl|ptl)
308+
# ignore the ACPI error on LNL and PTL.
309309
# kernel: ACPI: \: Can't tag data node
310310
ignore_str="$ignore_str""|kernel: ACPI: \\\\: Can't tag data node"
311311
esac

0 commit comments

Comments
 (0)