diff options
author | Rob Herring <robh@kernel.org> | 2019-07-30 08:49:34 -0600 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2019-07-30 13:09:57 -0600 |
commit | 740ce365a4dccc1df4d05219cd5bf68f01359196 (patch) | |
tree | 8dccc45a8fabe2669b8d62f5d8662c4b720c7cf3 /Documentation | |
parent | 609488bc979f99f805f34e9a32c1e3b71179d10b (diff) | |
download | linux-740ce365a4dccc1df4d05219cd5bf68f01359196.tar.bz2 |
dt-bindings: Fix generated example files getting added to schemas
Commit 837158b847a4 ("dt-bindings: Check the examples against the
schemas") started generating YAML encoded DT files to validate the
examples against the schema. When running 'make dt_binding_check' in
tree after the 1st time, the generated example .dt.yaml files are
mistakenly added to the list of schema files. Exclude *.example.dt.yaml
files from the search for schema files.
Fixes: 837158b847a4 ("dt-bindings: Check the examples against the schemas")
Reported-by: Guido Günther <agx@sigxcpu.org>
Tested-by: Guido Günther <agx@sigxcpu.org>
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/Makefile b/Documentation/devicetree/bindings/Makefile index 6b0dfd5c17ba..5138a2f6232a 100644 --- a/Documentation/devicetree/bindings/Makefile +++ b/Documentation/devicetree/bindings/Makefile @@ -19,7 +19,9 @@ quiet_cmd_mk_schema = SCHEMA $@ DT_DOCS = $(shell \ cd $(srctree)/$(src) && \ - find * \( -name '*.yaml' ! -name $(DT_TMP_SCHEMA) \) \ + find * \( -name '*.yaml' ! \ + -name $(DT_TMP_SCHEMA) ! \ + -name '*.example.dt.yaml' \) \ ) DT_SCHEMA_FILES ?= $(addprefix $(src)/,$(DT_DOCS)) |