Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading