diff options
author | Rob Herring <robh@kernel.org> | 2022-07-27 23:10:59 +0200 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2022-08-10 17:43:43 +0200 |
commit | dcc2ed3912ae32fd6646264d1aa296ea3d2aa07c (patch) | |
tree | fe0409a4083ebe9fa5475fca471acb5ce9fde26d /Documentation | |
parent | dt-bindings: mfd: convert to yaml Qualcomm SPMI PMIC (diff) | |
download | linux-dcc2ed3912ae32fd6646264d1aa296ea3d2aa07c.tar.xz linux-dcc2ed3912ae32fd6646264d1aa296ea3d2aa07c.zip |
dt-bindings: Drop DT_MK_SCHEMA_FLAGS conditional selecting schema files
Since commit ef8795f3f1ce ("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 <robh@kernel.org>
Link: https://lore.kernel.org/r/20220727211100.3249417-1-robh@kernel.org
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Documentation/devicetree/bindings/Makefile b/Documentation/devicetree/bindings/Makefile index c9953f86b19d..1eaccf135b30 100644 --- a/Documentation/devicetree/bindings/Makefile +++ b/Documentation/devicetree/bindings/Makefile @@ -42,9 +42,7 @@ quiet_cmd_chk_bindings = CHKDT $@ quiet_cmd_mk_schema = SCHEMA $@ cmd_mk_schema = f=$$(mktemp) ; \ - $(if $(DT_MK_SCHEMA_FLAGS), \ - printf '%s\n' $(real-prereqs), \ - $(find_all_cmd)) > $$f ; \ + $(find_all_cmd) > $$f ; \ $(DT_MK_SCHEMA) -j $(DT_MK_SCHEMA_FLAGS) @$$f > $@ ; \ rm -f $$f |