* [PATCH] kbuild: fix a typo dt_binding_schema -> dt_binding_schemas
@ 2024-09-25 5:32 Xu Yang
2024-09-25 13:51 ` Nicolas Schier
2024-10-06 17:34 ` Masahiro Yamada
0 siblings, 2 replies; 3+ messages in thread
From: Xu Yang @ 2024-09-25 5:32 UTC (permalink / raw)
To: robh, krzysztof.kozlowski+dt, conor+dt, masahiroy, nathan,
nicolas
Cc: devicetree, linux-kbuild, linux-kernel, imx
If we follow "make help" to "make dt_binding_schema", we will see
below error:
$ make dt_binding_schema
make[1]: *** No rule to make target 'dt_binding_schema'. Stop.
make: *** [Makefile:224: __sub-make] Error 2
It should be a typo. So this will fix it.
Fixes: 604a57ba9781 ("dt-bindings: kbuild: Add separate target/dependency for processed-schema.json")
Cc: stable@vger.kernel.org
Signed-off-by: Xu Yang <xu.yang_2@nxp.com>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 265dd990a9b6..7aa71c70305e 100644
--- a/Makefile
+++ b/Makefile
@@ -1645,7 +1645,7 @@ help:
echo '* dtbs - Build device tree blobs for enabled boards'; \
echo ' dtbs_install - Install dtbs to $(INSTALL_DTBS_PATH)'; \
echo ' dt_binding_check - Validate device tree binding documents and examples'; \
- echo ' dt_binding_schema - Build processed device tree binding schemas'; \
+ echo ' dt_binding_schemas - Build processed device tree binding schemas'; \
echo ' dtbs_check - Validate device tree source files';\
echo '')
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] kbuild: fix a typo dt_binding_schema -> dt_binding_schemas
2024-09-25 5:32 [PATCH] kbuild: fix a typo dt_binding_schema -> dt_binding_schemas Xu Yang
@ 2024-09-25 13:51 ` Nicolas Schier
2024-10-06 17:34 ` Masahiro Yamada
1 sibling, 0 replies; 3+ messages in thread
From: Nicolas Schier @ 2024-09-25 13:51 UTC (permalink / raw)
To: Xu Yang
Cc: robh, krzysztof.kozlowski+dt, conor+dt, masahiroy, nathan,
devicetree, linux-kbuild, linux-kernel, imx
On Wed, Sep 25, 2024 at 01:32:30PM +0800, Xu Yang wrote:
> If we follow "make help" to "make dt_binding_schema", we will see
> below error:
>
> $ make dt_binding_schema
> make[1]: *** No rule to make target 'dt_binding_schema'. Stop.
> make: *** [Makefile:224: __sub-make] Error 2
>
> It should be a typo. So this will fix it.
>
> Fixes: 604a57ba9781 ("dt-bindings: kbuild: Add separate target/dependency for processed-schema.json")
> Cc: stable@vger.kernel.org
> Signed-off-by: Xu Yang <xu.yang_2@nxp.com>
> ---
> Makefile | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Makefile b/Makefile
> index 265dd990a9b6..7aa71c70305e 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -1645,7 +1645,7 @@ help:
> echo '* dtbs - Build device tree blobs for enabled boards'; \
> echo ' dtbs_install - Install dtbs to $(INSTALL_DTBS_PATH)'; \
> echo ' dt_binding_check - Validate device tree binding documents and examples'; \
> - echo ' dt_binding_schema - Build processed device tree binding schemas'; \
> + echo ' dt_binding_schemas - Build processed device tree binding schemas'; \
> echo ' dtbs_check - Validate device tree source files';\
> echo '')
>
> --
> 2.34.1
>
Thanks!
Reviewed-by: Nicolas Schier <n.schier@avm.de>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] kbuild: fix a typo dt_binding_schema -> dt_binding_schemas
2024-09-25 5:32 [PATCH] kbuild: fix a typo dt_binding_schema -> dt_binding_schemas Xu Yang
2024-09-25 13:51 ` Nicolas Schier
@ 2024-10-06 17:34 ` Masahiro Yamada
1 sibling, 0 replies; 3+ messages in thread
From: Masahiro Yamada @ 2024-10-06 17:34 UTC (permalink / raw)
To: Xu Yang
Cc: robh, krzysztof.kozlowski+dt, conor+dt, nathan, nicolas,
devicetree, linux-kbuild, linux-kernel, imx
On Wed, Sep 25, 2024 at 2:31 PM Xu Yang <xu.yang_2@nxp.com> wrote:
>
> If we follow "make help" to "make dt_binding_schema", we will see
> below error:
>
> $ make dt_binding_schema
> make[1]: *** No rule to make target 'dt_binding_schema'. Stop.
> make: *** [Makefile:224: __sub-make] Error 2
>
> It should be a typo. So this will fix it.
>
> Fixes: 604a57ba9781 ("dt-bindings: kbuild: Add separate target/dependency for processed-schema.json")
> Cc: stable@vger.kernel.org
> Signed-off-by: Xu Yang <xu.yang_2@nxp.com>
Applied to linux-kbuild. Thanks.
> ---
> Makefile | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Makefile b/Makefile
> index 265dd990a9b6..7aa71c70305e 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -1645,7 +1645,7 @@ help:
> echo '* dtbs - Build device tree blobs for enabled boards'; \
> echo ' dtbs_install - Install dtbs to $(INSTALL_DTBS_PATH)'; \
> echo ' dt_binding_check - Validate device tree binding documents and examples'; \
> - echo ' dt_binding_schema - Build processed device tree binding schemas'; \
> + echo ' dt_binding_schemas - Build processed device tree binding schemas'; \
> echo ' dtbs_check - Validate device tree source files';\
> echo '')
>
> --
> 2.34.1
>
--
Best Regards
Masahiro Yamada
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-10-06 17:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-25 5:32 [PATCH] kbuild: fix a typo dt_binding_schema -> dt_binding_schemas Xu Yang
2024-09-25 13:51 ` Nicolas Schier
2024-10-06 17:34 ` Masahiro Yamada
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).