devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: Fix Makefile target for sun4i-a10-itead-iteaduino-plus
@ 2015-09-02 20:18 Josh Boyer
       [not found] ` <20150902201812.GC464-dHPIJuKSOV0f7BdofF/totBPR1lH4CV8@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Josh Boyer @ 2015-09-02 20:18 UTC (permalink / raw)
  To: Rob Herring, Pawel Moll, Mark Rutland, Olof Johansson
  Cc: Josef Gajdusek, Maxime Ripard, devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Bcc: 
Subject: [PATCH] ARM: dts: Fix Makefile target for sun4i-a10-itead-iteaduino-plus
Reply-To: 

ommit 79ae3e66f8d (ARM: dts: sun4i: Add Iteaduino Plus A10) added a new
make target for the sun4i-a10-itead-iteaduino-plus dts file, but mistakenly
used .dts instead of the correct .dtb suffix.  This resulted in a build error
like:

	scripts/Makefile.dtbinst:42: target 'sun4i-a10-itead-iteaduino-plus.dts' doesn't match the target pattern

when doing a make dtbs_install.

Fix it to use the proper file name.

Signed-off-by: Josh Boyer <jwboyer-rxtnV0ftBwyoClj4AeEUq9i2O/JbrIOy@public.gmane.org>
---
 arch/arm/boot/dts/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
index 233159d2eaab..bb8fa023d574 100644
--- a/arch/arm/boot/dts/Makefile
+++ b/arch/arm/boot/dts/Makefile
@@ -578,7 +578,7 @@ dtb-$(CONFIG_MACH_SUN4I) += \
 	sun4i-a10-hackberry.dtb \
 	sun4i-a10-hyundai-a7hd.dtb \
 	sun4i-a10-inet97fv2.dtb \
-	sun4i-a10-itead-iteaduino-plus.dts \
+	sun4i-a10-itead-iteaduino-plus.dtb \
 	sun4i-a10-jesurun-q5.dtb \
 	sun4i-a10-marsboard.dtb \
 	sun4i-a10-mini-xplus.dtb \
-- 
2.4.3

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] ARM: dts: Fix Makefile target for sun4i-a10-itead-iteaduino-plus
       [not found] ` <20150902201812.GC464-dHPIJuKSOV0f7BdofF/totBPR1lH4CV8@public.gmane.org>
@ 2015-09-03 21:57   ` Maxime Ripard
  2015-09-04 12:50     ` Josh Boyer
  0 siblings, 1 reply; 3+ messages in thread
From: Maxime Ripard @ 2015-09-03 21:57 UTC (permalink / raw)
  To: Josh Boyer
  Cc: Rob Herring, Pawel Moll, Mark Rutland, Olof Johansson,
	Josef Gajdusek, devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

[-- Attachment #1: Type: text/plain, Size: 1015 bytes --]

Hi Josh

On Wed, Sep 02, 2015 at 04:18:12PM -0400, Josh Boyer wrote:
> linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> Bcc: 
> Subject: [PATCH] ARM: dts: Fix Makefile target for sun4i-a10-itead-iteaduino-plus
> Reply-To: 

Hmmm, something went wrong with your mail header.

> ommit 79ae3e66f8d (ARM: dts: sun4i: Add Iteaduino Plus A10) added a new

Missing opening "C"

> make target for the sun4i-a10-itead-iteaduino-plus dts file, but mistakenly
> used .dts instead of the correct .dtb suffix.  This resulted in a build error
> like:
> 
> 	scripts/Makefile.dtbinst:42: target 'sun4i-a10-itead-iteaduino-plus.dts' doesn't match the target pattern
> 
> when doing a make dtbs_install.
> 
> Fix it to use the proper file name.
> 
> Signed-off-by: Josh Boyer <jwboyer-rxtnV0ftBwyoClj4AeEUq9i2O/JbrIOy@public.gmane.org>

Apart from that, it looks fine, thanks!

Maxime

-- 
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ARM: dts: Fix Makefile target for sun4i-a10-itead-iteaduino-plus
  2015-09-03 21:57   ` Maxime Ripard
@ 2015-09-04 12:50     ` Josh Boyer
  0 siblings, 0 replies; 3+ messages in thread
From: Josh Boyer @ 2015-09-04 12:50 UTC (permalink / raw)
  To: Maxime Ripard
  Cc: Rob Herring, Pawel Moll, Mark Rutland, Olof Johansson,
	Josef Gajdusek, open list:OPEN FIRMWARE AND...,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org

On Thu, Sep 3, 2015 at 5:57 PM, Maxime Ripard
<maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> wrote:
> Hi Josh
>
> On Wed, Sep 02, 2015 at 04:18:12PM -0400, Josh Boyer wrote:
>> linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
>> Bcc:
>> Subject: [PATCH] ARM: dts: Fix Makefile target for sun4i-a10-itead-iteaduino-plus
>> Reply-To:
>
> Hmmm, something went wrong with your mail header.

Well, that's embarrassing.  I've resent it.

>> ommit 79ae3e66f8d (ARM: dts: sun4i: Add Iteaduino Plus A10) added a new
>
> Missing opening "C"

Fixed in the resend.  Thanks for looking it over.

josh
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-09-04 12:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-02 20:18 [PATCH] ARM: dts: Fix Makefile target for sun4i-a10-itead-iteaduino-plus Josh Boyer
     [not found] ` <20150902201812.GC464-dHPIJuKSOV0f7BdofF/totBPR1lH4CV8@public.gmane.org>
2015-09-03 21:57   ` Maxime Ripard
2015-09-04 12:50     ` Josh Boyer

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).