]> Git Repo - linux.git/blob - arch/powerpc/tools/checkpatch.sh
perf python: Account for multiple words in CC
[linux.git] / arch / powerpc / tools / checkpatch.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: GPL-2.0+
3 # Copyright 2018, Michael Ellerman, IBM Corporation.
4 #
5 # Wrapper around checkpatch that uses our preferred settings
6
7 script_base=$(realpath $(dirname $0))
8
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 \
22         $@
This page took 0.036371 seconds and 4 git commands to generate.