Merge tag 'coccinelle-6.2' of git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux

Pull coccicheck update from Julia Lawall:
"Modernize use of grep in coccicheck:

Use 'grep -E' instead of 'egrep'"

* tag 'coccinelle-6.2' of git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux:
scripts: coccicheck: use "grep -E" instead of "egrep"

+1 -1
+1 -1
scripts/coccicheck
··· 47 # inspected there. 48 # 49 # --profile will not output if --very-quiet is used, so avoid it. 50 - echo $SPFLAGS | egrep -e "--profile|--show-trying" 2>&1 > /dev/null 51 if [ $? -eq 0 ]; then 52 FLAGS="--quiet" 53 fi
··· 47 # inspected there. 48 # 49 # --profile will not output if --very-quiet is used, so avoid it. 50 + echo $SPFLAGS | grep -E -e "--profile|--show-trying" 2>&1 > /dev/null 51 if [ $? -eq 0 ]; then 52 FLAGS="--quiet" 53 fi