diff options
author | Simon Glass | 2020-06-14 10:54:08 -0600 |
---|---|---|
committer | Simon Glass | 2020-07-09 18:57:22 -0600 |
commit | 8af45b1f20f7f56a872297873f793655fe37f8e3 (patch) | |
tree | ce002d14c6c8690a1369c573c3f932cf1524a34d /tools | |
parent | 5c430761e6a618032498fe294376a15a7ed1ee0b (diff) |
checkpatch: Don't warn about PREFER_IF in headers/DT files
This warning should only be displayed for C files. Fix it and update the
test.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/patman/test_checkpatch.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/patman/test_checkpatch.py b/tools/patman/test_checkpatch.py index 710b4a7d88b..c9580adb544 100644 --- a/tools/patman/test_checkpatch.py +++ b/tools/patman/test_checkpatch.py @@ -388,6 +388,8 @@ index 0000000..2234c87 """Test for Use the livetree API""" pm = PatchMaker() pm.add_line('common/main.c', '#ifdef CONFIG_YELLOW') + pm.add_line('common/init.h', '#ifdef CONFIG_YELLOW') + pm.add_line('fred.dtsi', '#ifdef CONFIG_YELLOW') self.checkSingleMessage(pm, "PREFER_IF") def testCommandUseDefconfig(self): |