Fix: uprobe: inequality comparison against NULL
[lttng-tools.git] / extras / checkpatch-hook
CommitLineData
de800f52
CB
1#!/bin/sh
2#
ab5be9fa 3# Copyright (C) 2013 Christian Babeux <christian.babeux@efficios.com>
de800f52 4#
ab5be9fa 5# SPDX-License-Identifier: GPL-2.0-only
de800f52 6#
de800f52
CB
7
8# To enable this hook, run the "install-checkpatch-hook" script.
9
10CHECKPATCH="extras/checkpatch.pl"
11
12if git rev-parse --verify HEAD >/dev/null 2>&1
13then
14 against=HEAD
15else
16 # Initial commit: diff against an empty tree object
17 against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
18fi
19
20git diff --cached $against -- | $CHECKPATCH --no-signoff -
This page took 0.033601 seconds and 4 git commands to generate.