Skip to content

Commit dcc2ed3

Browse files
committed
dt-bindings: Drop DT_MK_SCHEMA_FLAGS conditional selecting schema files
Since commit ef8795f ("dt-bindings: kbuild: Use DTB files for validation"), dt-mk-schema always needs a complete list of schemas, so the conditional using DT_MK_SCHEMA_FLAGS should be removed. Signed-off-by: Rob Herring <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 3f5117b commit dcc2ed3

File tree

1 file changed

+1
-3
lines changed
  • Documentation/devicetree/bindings

1 file changed

+1
-3
lines changed

Documentation/devicetree/bindings/Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@ quiet_cmd_chk_bindings = CHKDT $@
4242

4343
quiet_cmd_mk_schema = SCHEMA $@
4444
cmd_mk_schema = f=$$(mktemp) ; \
45-
$(if $(DT_MK_SCHEMA_FLAGS), \
46-
printf '%s\n' $(real-prereqs), \
47-
$(find_all_cmd)) > $$f ; \
45+
$(find_all_cmd) > $$f ; \
4846
$(DT_MK_SCHEMA) -j $(DT_MK_SCHEMA_FLAGS) @$$f > $@ ; \
4947
rm -f $$f
5048

0 commit comments

Comments
 (0)