blob: 1fad3fb90e7ca09700fddccb8ad5f31465379d27 [file] [log] [blame]
Michael Ellerman7cd129b2018-07-25 00:03:46 +10001#!/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 $@