]> git.baikalelectronics.ru Git - kernel.git/commit
lib: raid6: fix awk build warnings
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 6 Dec 2019 15:26:00 +0000 (16:26 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 9 Dec 2019 17:55:03 +0000 (18:55 +0100)
commitc203980c1a75948fcc5949d7059b462153e91625
tree52449a6688cf0733ea0e96a96d06cbb3e1ccf9bb
parent8ee64ae49c17cd165b614c09b43df736b5a41bb4
lib: raid6: fix awk build warnings

Newer versions of awk spit out these fun warnings:
awk: ../lib/raid6/unroll.awk:16: warning: regexp escape sequence `\#' is not a known regexp operator

As commit e3420e3ae2e4 ("x86/insn: Fix awk regexp warnings") showed, it
turns out that there are a number of awk strings that do not need to be
escaped and newer versions of awk now warn about this.

Fix the string up so that no warning is produced.  The exact same kernel
module gets created before and after this patch, showing that it wasn't
needed.

Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Link: https://lore.kernel.org/r/20191206152600.GA75093@kroah.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
lib/raid6/unroll.awk