Skip to content

Commit acc4802

Browse files
kernel-log-check: filter i915 supsending crtc logs (#738)
Signed-off-by: Iris Wu <xiaoyun.wu@intel.com>
1 parent 08b95c3 commit acc4802

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

tools/sof-kernel-log-check.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,11 @@ case "$platform" in
283283
# i915 0000:00:02.0: [drm] *ERROR* AUX A/DDI A/PHY A: not done (status 0xad4003ff)
284284
ignore_str="$ignore_str"'|i915 [[:digit:].:]+: \[drm\] \*ERROR\* AUX .+'
285285
;;
286+
ehl)
287+
# i915 crtc logs can be ignored
288+
# origin logs seen on EHL_RVP_I2S platforms
289+
# i915 0000:00:02.0: [drm] *ERROR* Suspending crtc's failed with -22
290+
ignore_str="$ignore_str""|i915 [[:digit:].:]+: \[drm\] \*ERROR\* Suspending crtc's failed with -[[:digit:]]+"
286291
esac
287292

288293
# below are new error level kernel logs from journalctl --priority=err

0 commit comments

Comments
 (0)