From 5d5546d1236c65c42d26254aa488a97cf5a24ef9 Mon Sep 17 00:00:00 2001 From: Pierre-Louis Bossart Date: Fri, 16 Feb 2024 13:03:55 -0600 Subject: [PATCH] tools/sof-kernel-log-check.sh: remove stray `\` Newer versions of grep complain about a regexp using a stray backslash in a regexp. Closes: https://github.com/thesofproject/sof-test/issues/1159 Signed-off-by: Pierre-Louis Bossart --- tools/sof-kernel-log-check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/sof-kernel-log-check.sh b/tools/sof-kernel-log-check.sh index 33e41eca..f69a01fd 100755 --- a/tools/sof-kernel-log-check.sh +++ b/tools/sof-kernel-log-check.sh @@ -259,7 +259,7 @@ ignore_str="$ignore_str"'|asix .-.+\..:.\.. en.+: Failed to .+' # https://unix.stackexchange.com/questions/109294/mei-00000016-0-init-hw-failure # TGLH_SKU0A70_HDA and WHL_UPEXT_HDA_ZEPHYR, suspend-resume test cases failed due to "mei_me 0000:00:16.0: wait hw ready failed" # https://github.com/intel-innersource/drivers.audio.ci.sof-framework/issues/246 -ignore_str="$ignore_str"'|mei_me 0000:00:16\..\: .+' +ignore_str="$ignore_str"'|mei_me 0000:00:16\..: .+' case "$platform" in # Audio PCI ID on CML Mantis is [8086:9dc8], which is defined as CNL in linux kernel.