Searched full:checkpatch (Results 1 – 7 of 7) sorted by relevance
5 # if no CHECKPATCH is explicitly given by the environment, try to6 # locate checkpatch.pl: first take the one from the path, then check9 if [ -z "$CHECKPATCH" ]; then10 CHECKPATCH=$(command -v checkpatch.pl)12 if [ -z "$CHECKPATCH" ]; then13 CHECKPATCH=$(find /usr/src/linux-headers* -name checkpatch.pl -print -quit)15 if [ -z "$CHECKPATCH" ]; then16 CHECKPATCH=$(find "$PWD/../linux" -name checkpatch.pl -print -quit)21 hash $CHECKPATCH 2>/dev/null ||22 { echo >&2 "Could not find checkpatch.pl, aborting"; exit 1; }[all …]
3 CHECKPATCH="${CHECKPATCH:-checkpatch.pl}"5 # checkpatch.pl will ignore the following paths21 # Use --typedefsfile if supported by the checkpatch tool22 typedefs_opt="--typedefsfile typedefs.checkpatch"23 $CHECKPATCH --help 2>&1 | grep -q -- --typedefsfile || \27 eval "$CHECKPATCH $CHECKPATCH_OPT $typedefs_opt -"30 function checkpatch() { function
122 .PHONY: checkpatch checkpatch-staging checkpatch-working123 checkpatch: checkpatch-staging checkpatch-working target125 checkpatch-working:126 ${q}./scripts/checkpatch.sh128 checkpatch-staging:129 ${q}./scripts/checkpatch.sh --cached
11 !.checkpatch.conf
17 fetch-depth: 0 # full history so checkpatch can check commit IDs in commit messages20 - name: Run checkpatch23 # checkpatch task28 wget --quiet https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/plain/scripts/checkpatch.pl29 chmod +x checkpatch.pl31 echo "invalid.struct.name" >const_structs.checkpatch36 # Run checkpatch.pl:41 # commits do solve previous checkpatch errors)43 _do checkpatch HEAD || failed=1; \46 _do checkpatch [all...]
11 3. You should run checkpatch preferably before submitting the pull request.
34 * to avoid triggering false positives with checkpatch.