diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2021-09-06 07:47:02 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2021-09-06 18:15:09 +0200 |
commit | 20fbb11fe4ea99e02d77824613f1438bea456683 (patch) | |
tree | 266d26a19e39b86b09a61a6f72db691d29f38939 /scripts | |
parent | Merge tag 'perf-tools-for-v5.15-2021-09-04' of git://git.kernel.org/pub/scm/l... (diff) | |
download | linux-20fbb11fe4ea99e02d77824613f1438bea456683.tar.xz linux-20fbb11fe4ea99e02d77824613f1438bea456683.zip |
don't make the syscall checking produce errors from warnings
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/checksyscalls.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checksyscalls.sh b/scripts/checksyscalls.sh index b7609958ee36..fd9777f63f14 100755 --- a/scripts/checksyscalls.sh +++ b/scripts/checksyscalls.sh @@ -266,4 +266,4 @@ syscall_list() { } (ignore_list && syscall_list $(dirname $0)/../arch/x86/entry/syscalls/syscall_32.tbl) | \ -$* -E -x c - > /dev/null +$* -Wno-error -E -x c - > /dev/null |