Skip to content

Commit

Permalink
ignore the ACPI error on PTL
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
harajend authored and kv2019i committed Jan 14, 2025
1 parent 8023b2c commit 306456e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions tools/sof-dump-status.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ def __init__(self):
"0x7728":"arl",
# pci-lnl.c
"0xa828":"lnl",
# pci-ptl.c
"0xe428":"ptl",
# Other PCI IDs
"0x9d71":"kbl", "0x9d70":"skl", "0x33c8":"hsw",
"0x3438":"bdw", "0x160c":"bdw", "0x0f04":"byt", "0x2284":"cht"
Expand Down
4 changes: 2 additions & 2 deletions tools/sof-kernel-log-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -304,8 +304,8 @@ case "$platform" in
# i2c_hid_acpi i2c-VEN_0488:00: i2c_hid_get_input: incomplete report (20/42405)
ignore_str="$ignore_str""|i2c_hid_acpi i2c-VEN_0488:00: i2c_hid_get_input: incomplete report"
;;
lnl)
# ignore the ACPI error on LNL.
lnl|ptl)
# ignore the ACPI error on LNL and PTL.
# kernel: ACPI: \: Can't tag data node
ignore_str="$ignore_str""|kernel: ACPI: \\\\: Can't tag data node"
esac
Expand Down

0 comments on commit 306456e

Please sign in to comment.