diff options
author | Antonio Borneo <borneo.antonio@gmail.com> | 2019-04-10 12:46:54 +0200 |
---|---|---|
committer | Antonio Borneo <borneo.antonio@gmail.com> | 2020-04-21 10:51:36 +0100 |
commit | 76a1524b5e4b89149d7126b681c935de4aaa441a (patch) | |
tree | 8ed3287b59c5640f3b02614a99ee19285bdf0538 /tools | |
parent | 278c7adcce51ca11c30b7dd5c178fa28d19dc4e6 (diff) | |
download | riscv-openocd-76a1524b5e4b89149d7126b681c935de4aaa441a.zip riscv-openocd-76a1524b5e4b89149d7126b681c935de4aaa441a.tar.gz riscv-openocd-76a1524b5e4b89149d7126b681c935de4aaa441a.tar.bz2 |
tools/checkpatch.sh: remove flag --no-tree
Commit c5d89883165e02ea4f318e3cb0ba40d1fb6f04d1 ("checkpatch.pl:
check for openocd tree, not for kernel tree") has already fixed
the check for OpenOCD tree, thus we do not need to skip it in the
shell wrapper.
Remove flag --no-tree from the shell wrapper.
Change-Id: I8be497258624d89bde7742fee141a8f56bf9188e
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/5110
Tested-by: jenkins
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/checkpatch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/checkpatch.sh b/tools/checkpatch.sh index e1dd267..0a630a2 100755 --- a/tools/checkpatch.sh +++ b/tools/checkpatch.sh @@ -2,4 +2,4 @@ # since=${1:-HEAD^} -git format-patch -M --stdout $since | tools/scripts/checkpatch.pl - --no-tree +git format-patch -M --stdout $since | tools/scripts/checkpatch.pl - |