Skip to content

Commit 2423009

Browse files
authored
sof-kernel-log-check: filter out i2c_hid_acpi issue on RPL (#982)
Errors are thrown in suspend-resume tests on initial RPL device, filter out. Fixes: #980 Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
1 parent ca4ba33 commit 2423009

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

tools/sof-kernel-log-check.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,12 @@ case "$platform" in
283283
# origin logs seen on EHL_RVP_I2S platforms
284284
# i915 0000:00:02.0: [drm] *ERROR* Suspending crtc's failed with -22
285285
ignore_str="$ignore_str""|i915 [[:digit:].:]+: \[drm\] \*ERROR\* Suspending crtc's failed with -[[:digit:]]+"
286+
;;
287+
rpl)
288+
# HID ACPI error in suspend-resume
289+
# https://github.com/thesofproject/sof-test/issues/980
290+
# i2c_hid_acpi i2c-VEN_0488:00: i2c_hid_get_input: incomplete report (20/42405)
291+
ignore_str="$ignore_str""|i2c_hid_acpi i2c-VEN_0488:00: i2c_hid_get_input: incomplete report"
286292
esac
287293

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

0 commit comments

Comments
 (0)