Skip to content

Commit

Permalink
sof-kernel-log-check.sh: ignore unrelated ACPI error on LNL platform
Browse files Browse the repository at this point in the history
This error means that data nodes failed to tie to ACPI handles.
But no audio impact, it's safe to ignore it on LNL.

Signed-off-by: Keqiao Zhang <[email protected]>
  • Loading branch information
keqiaozhang authored and marc-hb committed Nov 1, 2023
1 parent 6715ffb commit 6db43a1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tools/sof-kernel-log-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,11 @@ case "$platform" in
# https://github.com/thesofproject/sof-test/issues/980
# 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.
# kernel: ACPI: \: Can't tag data node
ignore_str="$ignore_str""|kernel: ACPI: \\\\: Can't tag data node"
esac

# 'failed to change power setting' and other errors observed at boot
Expand Down

0 comments on commit 6db43a1

Please sign in to comment.