diff options
author | Masahiro Yamada | 2021-03-11 15:30:54 +0900 |
---|---|---|
committer | Masahiro Yamada | 2021-03-11 18:22:48 +0900 |
commit | 285a65f1a10f87088cefd6c7ea6ff26b143339b3 (patch) | |
tree | 88c1dd00142d73416d1dbe7c3bd1ed6259f66f5a /scripts/Makefile.lib | |
parent | 4c273d23c44ad49c73353737b303e78585a4503f (diff) |
kbuild: remove meaningless parameter to $(call if_changed_rule,dtc)
This is a remnant of commit 78046fabe6e7 ("kbuild: determine the output
format of DTC by the target suffix").
The parameter "yaml" is meaningless because cmd_dtc no loner takes $(2).
Reported-by: Rob Herring <robh@kernel.org>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/Makefile.lib')
-rw-r--r-- | scripts/Makefile.lib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 90a4e04cd8f5..8cd67b1b6d15 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -352,7 +352,7 @@ define rule_dtc endef $(obj)/%.dt.yaml: $(src)/%.dts $(DTC) $(DT_TMP_SCHEMA) FORCE - $(call if_changed_rule,dtc,yaml) + $(call if_changed_rule,dtc) dtc-tmp = $(subst $(comma),_,$(dot-target).dts.tmp) |