Home
last modified time | relevance | path

Searched full:checkpatch (Results 1 – 25 of 89) sorted by relevance

1234

/openbmc/u-boot/tools/patman/
H A Dtest.py11 import checkpatch
218 """Test checkpatch operation"""
220 result = checkpatch.CheckPatch(inf)
231 result = checkpatch.CheckPatch(inf)
242 result = checkpatch.CheckPatch(inf)
253 result = checkpatch.CheckPatch(inf)
264 result = checkpatch.CheckPatch(inf)
H A Dcheckpatch.py24 fname = os.path.join(path, 'checkpatch.pl')
31 'scripts', 'checkpatch.pl')
36 sys.exit('Cannot find checkpatch.pl - please put it in your ' +
39 def CheckPatch(fname, verbose=False): function
40 """Run checkpatch.pl on a file.
54 stdout: Full output of checkpatch
143 '''Run the checkpatch.pl script on each patch'''
148 result = CheckPatch(fname, verbose)
166 str = 'checkpatch.pl found %d error(s), %d warning(s), %d checks(s)'
H A Dpatman17 from patman import checkpatch, command, gitutil, patchstream, \
20 import checkpatch
158 ok = checkpatch.CheckPatches(options.verbose, args)
H A Dpatman.py17 from patman import checkpatch, command, gitutil, patchstream, \
20 import checkpatch
158 ok = checkpatch.CheckPatches(options.verbose, args)
H A D__init__.py1 __all__ = ['checkpatch', 'command', 'commit', 'cros_subprocess',
/openbmc/linux/Documentation/dev-tools/
H A Dcheckpatch.rst4 Checkpatch title
7 Checkpatch (scripts/checkpatch.pl) is a perl script which checks for trivial
8 style violations in patches and optionally corrects them. Checkpatch can
11 Checkpatch is not always right. Your judgement takes precedence over checkpatch
19 This section will describe the options checkpatch can be run with.
23 ./scripts/checkpatch.pl [OPTION]... [FILE]...
37 Run checkpatch without the kernel tree.
90 checkpatch on source files in the kernel.
94 Enable stricter tests in checkpatch. By default the tests emitted as CHECK
99 Every message emitted by checkpatch has an associated TYPE. Add this flag
[all …]
/openbmc/qemu/.gitlab-ci.d/
H A Dcheck-patch.py3 # check-patch.py: run checkpatch.pl across all commits in a branch
49 ret = subprocess.run(["scripts/checkpatch.pl", "--terse", ancestor + "..."])
52 print(" ❌ FAIL one or more commits failed scripts/checkpatch.pl")
/openbmc/linux/drivers/gpu/drm/ci/
H A Dcheck-patch.py4 # check-patch.py: run checkpatch.pl across all commits in a branch
48 ret = subprocess.run(["scripts/checkpatch.pl",
54 print(" ❌ FAIL one or more commits failed scripts/checkpatch.pl")
/openbmc/linux/Documentation/driver-api/media/
H A Dmaintainer-entry-profile.rst93 On such case, checkpatch's ``delegate`` field indicates who's currently
153 Media development uses ``checkpatch.pl`` on strict mode to verify the code
156 $ ./scripts/checkpatch.pl --strict --max-line-length=80
160 may question about the rationale for not addressing the ``checkpatch.pl``.
163 a few cases, ``checkpatch.pl`` may actually point to something that would
166 Note that addressing one ``checkpatch.pl`` issue (of any kind) alone may lead
/openbmc/linux/arch/powerpc/tools/
H A Dcheckpatch.sh5 # Wrapper around checkpatch that uses our preferred settings
9 exec $script_base/../../../scripts/checkpatch.pl \
/openbmc/linux/Documentation/hwmon/
H A Dsubmitting-patches.rst18 * Please run your patch through 'checkpatch --strict'. There should be no
26 * If your patch generates checkpatch errors, warnings, or check messages,
60 * Running your patch or driver file(s) through checkpatch does not mean its
80 checkpatch, but also makes it more difficult to review the code.
/openbmc/linux/Documentation/translations/zh_CN/process/
H A D5.Posting.rst200 - 你确定你的补丁没有荒唐的错误吗?您应该始终通过scripts/checkpatch.pl检查
201 补丁程序,并解决它提出的问题。请记住,checkpatch.pl,虽然体现了对内核补丁
/openbmc/linux/Documentation/translations/zh_TW/process/
H A D5.Posting.rst203 - 你確定你的補丁沒有荒唐的錯誤嗎?您應該始終通過scripts/checkpatch.pl檢查
204 補丁程序,並解決它提出的問題。請記住,checkpatch.pl,雖然體現了對內核補丁
/openbmc/linux/Documentation/devicetree/bindings/
H A Dsubmitting-patches.rst48 string. [ checkpatch will emit warnings if this step is not
50 ("checkpatch: add DT compatible string documentation checks"). ]
/openbmc/linux/drivers/staging/media/omap4iss/
H A DTODO3 * Fix checkpatch errors and warnings
/openbmc/qemu/
H A D.patchew.yml84 {% if test == "checkpatch" %}
134 checkpatch:
141 ./scripts/checkpatch.pl --mailback base..
/openbmc/linux/drivers/staging/rts5208/
H A DTODO3 - checkpatch.pl fixes
/openbmc/linux/drivers/staging/wlan-ng/
H A DREADME2 - checkpatch.pl cleanups
/openbmc/linux/drivers/comedi/
H A DTODO2 - checkpatch.pl cleanups
/openbmc/linux/drivers/staging/rtl8723bs/
H A DTODO5 - checkpatch.pl fixes - most of the remaining ones are lines too long. Many
/openbmc/linux/drivers/staging/rtl8712/
H A DTODO5 - checkpatch.pl fixes - only a few remain
/openbmc/linux/drivers/staging/vt6656/
H A DTODO14 - checkpatch.pl fixes
/openbmc/linux/drivers/char/tpm/
H A Dtpm-sysfs.c385 * Also note you must ignore checkpatch warnings in this macro
386 * code. This is deep macro magic that checkpatch.pl doesn't
417 /* ignore checkpatch warning about trailing ; in macro. */
434 /* ignore checkpatch warning about trailing , in macro. */
/openbmc/linux/drivers/staging/vt6655/
H A DTODO16 - checkpatch.pl fixes
/openbmc/u-boot/
H A D.checkpatch.conf4 # Temporary for false positive in checkpatch

1234