xref: /linux/arch/powerpc/tools/checkpatch.sh (revision 7adb3e998f5bea3e1fd2f76c1cf80d76b8af6626)
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
7script_base=$(realpath $(dirname $0))
8
9exec $script_base/../../../scripts/checkpatch.pl \
10	--subjective \
11	--no-summary \
12	--max-line-length=90 \
13	--show-types \
14	--ignore ARCH_INCLUDE_LINUX \
15	--ignore BIT_MACRO \
16	--ignore COMPARISON_TO_NULL \
17	--ignore EMAIL_SUBJECT \
18	--ignore FILE_PATH_CHANGES \
19	--ignore GLOBAL_INITIALISERS \
20	--ignore LINE_SPACING \
21	--ignore MULTIPLE_ASSIGNMENTS \
22	$@
23