From 48be546b70f509d8ac02288fd5069913ec9196f3 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Mon, 13 Feb 2023 08:56:38 -0700 Subject: checkpatch: Add a warning for pre-schema driver model tags Help ensure that these don't creep into development by adding a check in checkpatch for them. Signed-off-by: Simon Glass --- tools/patman/test_checkpatch.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tools/patman/test_checkpatch.py') diff --git a/tools/patman/test_checkpatch.py b/tools/patman/test_checkpatch.py index 4c2ab6e590e..a8bb364e42b 100644 --- a/tools/patman/test_checkpatch.py +++ b/tools/patman/test_checkpatch.py @@ -452,6 +452,12 @@ index 0000000..2234c87 self.check_strl("cat"); self.check_strl("cpy"); + def test_schema(self): + """Check for uses of strn(cat|cpy)""" + pm = PatchMaker() + pm.add_line('arch/sandbox/dts/sandbox.dtsi', '\tu-boot,dm-pre-proper;') + self.check_single_message(pm, 'PRE_SCHEMA', 'error') + if __name__ == "__main__": unittest.main() gitutil.RunTests() -- cgit v1.2.3