Merge tag 'linux-kselftest-kunit-fixes-5.11-rc3' of git://git.kernel.org/pub/scm...
[linux/fpc-iii.git] / arch / powerpc / tools / checkpatch.sh
blob91c04802ec31febec5f4d44c1bf0b3eb694d9bab
1 #!/bin/bash
2 # SPDX-License-Identifier: GPL-2.0+
3 # Copyright 2018, Michael Ellerman, IBM Corporation.
5 # Wrapper around checkpatch that uses our preferred settings
7 script_base=$(realpath $(dirname $0))
9 exec $script_base/../../../scripts/checkpatch.pl \
10 --subjective \
11 --no-summary \
12 --show-types \
13 --ignore ARCH_INCLUDE_LINUX \
14 --ignore BIT_MACRO \
15 --ignore COMPARISON_TO_NULL \
16 --ignore EMAIL_SUBJECT \
17 --ignore FILE_PATH_CHANGES \
18 --ignore GLOBAL_INITIALISERS \
19 --ignore LINE_SPACING \
20 --ignore MULTIPLE_ASSIGNMENTS \
21 --ignore DT_SPLIT_BINDING_PATCH \