All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] pinctrl: always include all subdirectories in build
@ 2015-10-11 15:40 Jonas Gorski
  2015-10-11 16:27 ` Viresh Kumar
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Jonas Gorski @ 2015-10-11 15:40 UTC (permalink / raw)
  To: linux-gpio
  Cc: Linus Walleij, Alexandre Courbot, Thomas Petazzoni,
	Stephen Warren, Lee Jones, Eric Anholt, Florian Fainelli,
	Ray Jui, Scott Branden, Mika Westerberg, Heikki Krogerus,
	Matthias Brugger, Maxime Coquelin, Kumar Gala, Andy Gross,
	David Brown, Viresh Kumar, Tomasz Figa, Tony Prisk,
	Sebastian Hesselbarth, Laurent Pinchart

All pinctrl drivers in subdirectories are properly guarded by individual
configuration symbols, so there is no need to limit the directories to
the belonging machines.

This allows wider COMPILE_TEST coverage on "foreign" targets.

Signed-off-by: Jonas Gorski <jogo@openwrt.org>
---
 drivers/pinctrl/Makefile | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/drivers/pinctrl/Makefile b/drivers/pinctrl/Makefile
index cad077c..2eb25a8 100644
--- a/drivers/pinctrl/Makefile
+++ b/drivers/pinctrl/Makefile
@@ -39,17 +39,17 @@ obj-$(CONFIG_PINCTRL_TB10X)	+= pinctrl-tb10x.o
 obj-$(CONFIG_PINCTRL_ST) 	+= pinctrl-st.o
 obj-$(CONFIG_PINCTRL_ZYNQ)	+= pinctrl-zynq.o
 
-obj-$(CONFIG_ARCH_BCM)		+= bcm/
-obj-$(CONFIG_ARCH_BERLIN)	+= berlin/
+obj-y				+= bcm/
+obj-y				+= berlin/
 obj-y				+= freescale/
-obj-$(CONFIG_X86)		+= intel/
-obj-$(CONFIG_PLAT_ORION)        += mvebu/
+obj-y				+= intel/
+obj-y				+= mvebu/
 obj-y				+= nomadik/
-obj-$(CONFIG_ARCH_QCOM)		+= qcom/
-obj-$(CONFIG_PINCTRL_SAMSUNG)	+= samsung/
-obj-$(CONFIG_PINCTRL_SH_PFC)	+= sh-pfc/
-obj-$(CONFIG_PLAT_SPEAR)	+= spear/
-obj-$(CONFIG_ARCH_SUNXI)	+= sunxi/
-obj-$(CONFIG_ARCH_UNIPHIER)	+= uniphier/
-obj-$(CONFIG_ARCH_VT8500)	+= vt8500/
-obj-$(CONFIG_ARCH_MEDIATEK)	+= mediatek/
+obj-y				+= qcom/
+obj-y				+= samsung/
+obj-y				+= sh-pfc/
+obj-y				+= spear/
+obj-y				+= sunxi/
+obj-y				+= uniphier/
+obj-y				+= vt8500/
+obj-y				+= mediatek/
-- 
2.1.4

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

* Re: [PATCH] pinctrl: always include all subdirectories in build
  2015-10-11 15:40 [PATCH] pinctrl: always include all subdirectories in build Jonas Gorski
@ 2015-10-11 16:27 ` Viresh Kumar
  2015-10-11 18:36 ` Matthias Brugger
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Viresh Kumar @ 2015-10-11 16:27 UTC (permalink / raw)
  To: Jonas Gorski
  Cc: linux-gpio, Linus Walleij, Alexandre Courbot, Thomas Petazzoni,
	Stephen Warren, Lee Jones, Eric Anholt, Florian Fainelli,
	Ray Jui, Scott Branden, Mika Westerberg, Heikki Krogerus,
	Matthias Brugger, Maxime Coquelin, Kumar Gala, Andy Gross,
	David Brown, Viresh Kumar, Tomasz Figa, Tony Prisk,
	Sebastian Hesselbarth, Laurent Pinchart

On 11-10-15, 17:40, Jonas Gorski wrote:
> All pinctrl drivers in subdirectories are properly guarded by individual
> configuration symbols, so there is no need to limit the directories to
> the belonging machines.
> 
> This allows wider COMPILE_TEST coverage on "foreign" targets.
> 
> Signed-off-by: Jonas Gorski <jogo@openwrt.org>
> ---
>  drivers/pinctrl/Makefile | 24 ++++++++++++------------
>  1 file changed, 12 insertions(+), 12 deletions(-)
> 

For SPEAr:

Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

-- 
viresh

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

* Re: [PATCH] pinctrl: always include all subdirectories in build
  2015-10-11 15:40 [PATCH] pinctrl: always include all subdirectories in build Jonas Gorski
  2015-10-11 16:27 ` Viresh Kumar
@ 2015-10-11 18:36 ` Matthias Brugger
  2015-10-11 19:15 ` Laurent Pinchart
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Matthias Brugger @ 2015-10-11 18:36 UTC (permalink / raw)
  To: Jonas Gorski, linux-gpio
  Cc: Linus Walleij, Alexandre Courbot, Thomas Petazzoni,
	Stephen Warren, Lee Jones, Eric Anholt, Florian Fainelli,
	Ray Jui, Scott Branden, Mika Westerberg, Heikki Krogerus,
	Maxime Coquelin, Kumar Gala, Andy Gross, David Brown,
	Viresh Kumar, Tomasz Figa, Tony Prisk, Sebastian Hesselbarth,
	Laurent Pinchart, Masahiro Yamada



On 11/10/15 17:40, Jonas Gorski wrote:
> All pinctrl drivers in subdirectories are properly guarded by individual
> configuration symbols, so there is no need to limit the directories to
> the belonging machines.
>
> This allows wider COMPILE_TEST coverage on "foreign" targets.
>
> Signed-off-by: Jonas Gorski <jogo@openwrt.org>
> ---
>   drivers/pinctrl/Makefile | 24 ++++++++++++------------
>   1 file changed, 12 insertions(+), 12 deletions(-)

For Mediatek:

Acked-by: Matthias Brugger <matthias.bgg@gmail.com>

>
> diff --git a/drivers/pinctrl/Makefile b/drivers/pinctrl/Makefile
> index cad077c..2eb25a8 100644
> --- a/drivers/pinctrl/Makefile
> +++ b/drivers/pinctrl/Makefile
> @@ -39,17 +39,17 @@ obj-$(CONFIG_PINCTRL_TB10X)	+= pinctrl-tb10x.o
>   obj-$(CONFIG_PINCTRL_ST) 	+= pinctrl-st.o
>   obj-$(CONFIG_PINCTRL_ZYNQ)	+= pinctrl-zynq.o
>
> -obj-$(CONFIG_ARCH_BCM)		+= bcm/
> -obj-$(CONFIG_ARCH_BERLIN)	+= berlin/
> +obj-y				+= bcm/
> +obj-y				+= berlin/
>   obj-y				+= freescale/
> -obj-$(CONFIG_X86)		+= intel/
> -obj-$(CONFIG_PLAT_ORION)        += mvebu/
> +obj-y				+= intel/
> +obj-y				+= mvebu/
>   obj-y				+= nomadik/
> -obj-$(CONFIG_ARCH_QCOM)		+= qcom/
> -obj-$(CONFIG_PINCTRL_SAMSUNG)	+= samsung/
> -obj-$(CONFIG_PINCTRL_SH_PFC)	+= sh-pfc/
> -obj-$(CONFIG_PLAT_SPEAR)	+= spear/
> -obj-$(CONFIG_ARCH_SUNXI)	+= sunxi/
> -obj-$(CONFIG_ARCH_UNIPHIER)	+= uniphier/
> -obj-$(CONFIG_ARCH_VT8500)	+= vt8500/
> -obj-$(CONFIG_ARCH_MEDIATEK)	+= mediatek/
> +obj-y				+= qcom/
> +obj-y				+= samsung/
> +obj-y				+= sh-pfc/
> +obj-y				+= spear/
> +obj-y				+= sunxi/
> +obj-y				+= uniphier/
> +obj-y				+= vt8500/
> +obj-y				+= mediatek/
>

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

* Re: [PATCH] pinctrl: always include all subdirectories in build
  2015-10-11 15:40 [PATCH] pinctrl: always include all subdirectories in build Jonas Gorski
  2015-10-11 16:27 ` Viresh Kumar
  2015-10-11 18:36 ` Matthias Brugger
@ 2015-10-11 19:15 ` Laurent Pinchart
  2015-10-12  7:17 ` Thomas Petazzoni
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Laurent Pinchart @ 2015-10-11 19:15 UTC (permalink / raw)
  To: Jonas Gorski; +Cc: linux-gpio, Linus Walleij, Alexandre Courbot

Hi Jonas,

(Reducing the CC list a bit to avoid spamming people)

Thank you for the patch.

On Sunday 11 October 2015 17:40:44 Jonas Gorski wrote:
> All pinctrl drivers in subdirectories are properly guarded by individual
> configuration symbols, so there is no need to limit the directories to
> the belonging machines.
> 
> This allows wider COMPILE_TEST coverage on "foreign" targets.
> 
> Signed-off-by: Jonas Gorski <jogo@openwrt.org>

For sh-pfc,

Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

> ---
>  drivers/pinctrl/Makefile | 24 ++++++++++++------------
>  1 file changed, 12 insertions(+), 12 deletions(-)
> 
> diff --git a/drivers/pinctrl/Makefile b/drivers/pinctrl/Makefile
> index cad077c..2eb25a8 100644
> --- a/drivers/pinctrl/Makefile
> +++ b/drivers/pinctrl/Makefile
> @@ -39,17 +39,17 @@ obj-$(CONFIG_PINCTRL_TB10X)	+= pinctrl-tb10x.o
>  obj-$(CONFIG_PINCTRL_ST) 	+= pinctrl-st.o
>  obj-$(CONFIG_PINCTRL_ZYNQ)	+= pinctrl-zynq.o
> 
> -obj-$(CONFIG_ARCH_BCM)		+= bcm/
> -obj-$(CONFIG_ARCH_BERLIN)	+= berlin/
> +obj-y				+= bcm/
> +obj-y				+= berlin/
>  obj-y				+= freescale/
> -obj-$(CONFIG_X86)		+= intel/
> -obj-$(CONFIG_PLAT_ORION)        += mvebu/
> +obj-y				+= intel/
> +obj-y				+= mvebu/
>  obj-y				+= nomadik/
> -obj-$(CONFIG_ARCH_QCOM)		+= qcom/
> -obj-$(CONFIG_PINCTRL_SAMSUNG)	+= samsung/
> -obj-$(CONFIG_PINCTRL_SH_PFC)	+= sh-pfc/
> -obj-$(CONFIG_PLAT_SPEAR)	+= spear/
> -obj-$(CONFIG_ARCH_SUNXI)	+= sunxi/
> -obj-$(CONFIG_ARCH_UNIPHIER)	+= uniphier/
> -obj-$(CONFIG_ARCH_VT8500)	+= vt8500/
> -obj-$(CONFIG_ARCH_MEDIATEK)	+= mediatek/
> +obj-y				+= qcom/
> +obj-y				+= samsung/
> +obj-y				+= sh-pfc/
> +obj-y				+= spear/
> +obj-y				+= sunxi/
> +obj-y				+= uniphier/
> +obj-y				+= vt8500/
> +obj-y				+= mediatek/

-- 
Regards,

Laurent Pinchart


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

* Re: [PATCH] pinctrl: always include all subdirectories in build
  2015-10-11 15:40 [PATCH] pinctrl: always include all subdirectories in build Jonas Gorski
                   ` (2 preceding siblings ...)
  2015-10-11 19:15 ` Laurent Pinchart
@ 2015-10-12  7:17 ` Thomas Petazzoni
  2015-10-12 10:55 ` Mika Westerberg
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Thomas Petazzoni @ 2015-10-12  7:17 UTC (permalink / raw)
  To: Jonas Gorski
  Cc: linux-gpio, Linus Walleij, Alexandre Courbot, Stephen Warren,
	Lee Jones, Eric Anholt, Florian Fainelli, Ray Jui, Scott Branden,
	Mika Westerberg, Heikki Krogerus, Matthias Brugger,
	Maxime Coquelin, Kumar Gala, Andy Gross, David Brown,
	Viresh Kumar, Tomasz Figa, Tony Prisk, Sebastian Hesselbarth,
	Laurent Pinchart, Masahiro Yamada

Dear Jonas Gorski,

On Sun, 11 Oct 2015 17:40:44 +0200, Jonas Gorski wrote:
> All pinctrl drivers in subdirectories are properly guarded by individual
> configuration symbols, so there is no need to limit the directories to
> the belonging machines.
> 
> This allows wider COMPILE_TEST coverage on "foreign" targets.
> 
> Signed-off-by: Jonas Gorski <jogo@openwrt.org>
> ---
>  drivers/pinctrl/Makefile | 24 ++++++++++++------------
>  1 file changed, 12 insertions(+), 12 deletions(-)

For mvebu:

Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* Re: [PATCH] pinctrl: always include all subdirectories in build
  2015-10-11 15:40 [PATCH] pinctrl: always include all subdirectories in build Jonas Gorski
                   ` (3 preceding siblings ...)
  2015-10-12  7:17 ` Thomas Petazzoni
@ 2015-10-12 10:55 ` Mika Westerberg
  2015-10-12 19:26 ` Eric Anholt
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Mika Westerberg @ 2015-10-12 10:55 UTC (permalink / raw)
  To: Jonas Gorski
  Cc: linux-gpio, Linus Walleij, Alexandre Courbot, Thomas Petazzoni,
	Stephen Warren, Lee Jones, Eric Anholt, Florian Fainelli,
	Ray Jui, Scott Branden, Heikki Krogerus, Matthias Brugger,
	Maxime Coquelin, Kumar Gala, Andy Gross, David Brown,
	Viresh Kumar, Tomasz Figa, Tony Prisk, Sebastian Hesselbarth,
	Laurent Pinchart, Masahiro Yamada

On Sun, Oct 11, 2015 at 05:40:44PM +0200, Jonas Gorski wrote:
> All pinctrl drivers in subdirectories are properly guarded by individual
> configuration symbols, so there is no need to limit the directories to
> the belonging machines.
> 
> This allows wider COMPILE_TEST coverage on "foreign" targets.
> 
> Signed-off-by: Jonas Gorski <jogo@openwrt.org>

...

> +obj-y				+= intel/

Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>

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

* Re: [PATCH] pinctrl: always include all subdirectories in build
  2015-10-11 15:40 [PATCH] pinctrl: always include all subdirectories in build Jonas Gorski
                   ` (4 preceding siblings ...)
  2015-10-12 10:55 ` Mika Westerberg
@ 2015-10-12 19:26 ` Eric Anholt
  2015-10-13 15:59 ` Bjorn Andersson
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Eric Anholt @ 2015-10-12 19:26 UTC (permalink / raw)
  To: Jonas Gorski, linux-gpio
  Cc: Linus Walleij, Alexandre Courbot, Thomas Petazzoni,
	Stephen Warren, Lee Jones, Florian Fainelli, Ray Jui,
	Scott Branden, Mika Westerberg, Heikki Krogerus,
	Matthias Brugger, Maxime Coquelin, Kumar Gala, Andy Gross,
	David Brown, Viresh Kumar, Tomasz Figa, Tony Prisk,
	Sebastian Hesselbarth, Laurent Pinchart, Masahiro Yamada

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

Jonas Gorski <jogo@openwrt.org> writes:

> All pinctrl drivers in subdirectories are properly guarded by individual
> configuration symbols, so there is no need to limit the directories to
> the belonging machines.
>
> This allows wider COMPILE_TEST coverage on "foreign" targets.

Thanks!  Unrelatedly, I actually ended up being surprised by clk-bcm2835
being gated on CONFIG_ARCH_BCM today.  For bcm2835:

Acked-by: Eric Anholt <eric@anholt.net>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

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

* Re: [PATCH] pinctrl: always include all subdirectories in build
  2015-10-11 15:40 [PATCH] pinctrl: always include all subdirectories in build Jonas Gorski
                   ` (5 preceding siblings ...)
  2015-10-12 19:26 ` Eric Anholt
@ 2015-10-13 15:59 ` Bjorn Andersson
  2015-10-15  5:08 ` Ray Jui
  2015-10-15  6:10 ` yamada.masahiro
  8 siblings, 0 replies; 10+ messages in thread
From: Bjorn Andersson @ 2015-10-13 15:59 UTC (permalink / raw)
  To: Jonas Gorski
  Cc: linux-gpio, Linus Walleij, Alexandre Courbot, Thomas Petazzoni,
	Stephen Warren, Lee Jones, Eric Anholt, Florian Fainelli,
	Ray Jui, Scott Branden, Mika Westerberg, Heikki Krogerus,
	Matthias Brugger, Maxime Coquelin, Kumar Gala, Andy Gross,
	David Brown, Viresh Kumar, Tomasz Figa, Tony Prisk,
	Sebastian Hesselbarth, Laurent

On Sun, Oct 11, 2015 at 8:40 AM, Jonas Gorski <jogo@openwrt.org> wrote:
[..]
> diff --git a/drivers/pinctrl/Makefile b/drivers/pinctrl/Makefile
[..]
> +obj-y                          += qcom/

Acked-by: Bjorn Andersson <bjorn.andersson@sonymobile.com>

Regards,
Bjorn

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

* Re: [PATCH] pinctrl: always include all subdirectories in build
  2015-10-11 15:40 [PATCH] pinctrl: always include all subdirectories in build Jonas Gorski
                   ` (6 preceding siblings ...)
  2015-10-13 15:59 ` Bjorn Andersson
@ 2015-10-15  5:08 ` Ray Jui
  2015-10-15  6:10 ` yamada.masahiro
  8 siblings, 0 replies; 10+ messages in thread
From: Ray Jui @ 2015-10-15  5:08 UTC (permalink / raw)
  To: Jonas Gorski, linux-gpio
  Cc: Linus Walleij, Alexandre Courbot, Thomas Petazzoni,
	Stephen Warren, Lee Jones, Eric Anholt, Florian Fainelli,
	Scott Branden, Mika Westerberg, Heikki Krogerus,
	Matthias Brugger, Maxime Coquelin, Kumar Gala, Andy Gross,
	David Brown, Viresh Kumar, Tomasz Figa, Tony Prisk,
	Sebastian Hesselbarth, Laurent Pinchart, Masahiro Yamada



On 10/11/2015 8:40 AM, Jonas Gorski wrote:
> All pinctrl drivers in subdirectories are properly guarded by individual
> configuration symbols, so there is no need to limit the directories to
> the belonging machines.
> 
> This allows wider COMPILE_TEST coverage on "foreign" targets.
> 
> Signed-off-by: Jonas Gorski <jogo@openwrt.org>
> ---
>  drivers/pinctrl/Makefile | 24 ++++++++++++------------
>  1 file changed, 12 insertions(+), 12 deletions(-)

For ARCH_BCM,

Acked-by: Ray Jui <rjui@broadcom.com>

Thanks,

Ray

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

* RE: [PATCH] pinctrl: always include all subdirectories in build
  2015-10-11 15:40 [PATCH] pinctrl: always include all subdirectories in build Jonas Gorski
                   ` (7 preceding siblings ...)
  2015-10-15  5:08 ` Ray Jui
@ 2015-10-15  6:10 ` yamada.masahiro
  8 siblings, 0 replies; 10+ messages in thread
From: yamada.masahiro @ 2015-10-15  6:10 UTC (permalink / raw)
  To: jogo, linux-gpio
  Cc: linus.walleij, gnurou, thomas.petazzoni, swarren, lee, eric,
	f.fainelli, rjui, sbranden, mika.westerberg, heikki.krogerus,
	matthias.bgg, maxime.coquelin, galak, agross, davidb, vireshk,
	tomasz.figa, linux, sebastian.hesselbarth, laurent.pinchart

Hi.


> From: linux-gpio-owner@vger.kernel.org
> [mailto:linux-gpio-owner@vger.kernel.org] On Behalf Of Jonas Gorski
> Sent: Monday, October 12, 2015 12:41 AM
> To: linux-gpio@vger.kernel.org
> Cc: Linus Walleij; Alexandre Courbot; Thomas Petazzoni; Stephen Warren;
> Lee Jones; Eric Anholt; Florian Fainelli; Ray Jui; Scott Branden; Mika
> Westerberg; Heikki Krogerus; Matthias Brugger; Maxime Coquelin; Kumar Gala;
> Andy Gross; David Brown; Viresh Kumar; Tomasz Figa; Tony Prisk; Sebastian
> Hesselbarth; Laurent Pinchart; Yamada, Masahiro/山田 真弘
> Subject: [PATCH] pinctrl: always include all subdirectories in build
> 
> All pinctrl drivers in subdirectories are properly guarded by individual
> configuration symbols, so there is no need to limit the directories to the
> belonging machines.
> 
> This allows wider COMPILE_TEST coverage on "foreign" targets.
> 
> Signed-off-by: Jonas Gorski <jogo@openwrt.org>
> ---
>  drivers/pinctrl/Makefile | 24 ++++++++++++------------
>  1 file changed, 12 insertions(+), 12 deletions(-)
> 
> diff --git a/drivers/pinctrl/Makefile b/drivers/pinctrl/Makefile index
> cad077c..2eb25a8 100644
> --- a/drivers/pinctrl/Makefile
> +++ b/drivers/pinctrl/Makefile
> @@ -39,17 +39,17 @@ obj-$(CONFIG_PINCTRL_TB10X)	+= pinctrl-tb10x.o
>  obj-$(CONFIG_PINCTRL_ST) 	+= pinctrl-st.o
>  obj-$(CONFIG_PINCTRL_ZYNQ)	+= pinctrl-zynq.o
> 
> -obj-$(CONFIG_ARCH_BCM)		+= bcm/
> -obj-$(CONFIG_ARCH_BERLIN)	+= berlin/
> +obj-y				+= bcm/
> +obj-y				+= berlin/
>  obj-y				+= freescale/
> -obj-$(CONFIG_X86)		+= intel/
> -obj-$(CONFIG_PLAT_ORION)        += mvebu/
> +obj-y				+= intel/
> +obj-y				+= mvebu/
>  obj-y				+= nomadik/
> -obj-$(CONFIG_ARCH_QCOM)		+= qcom/
> -obj-$(CONFIG_PINCTRL_SAMSUNG)	+= samsung/
> -obj-$(CONFIG_PINCTRL_SH_PFC)	+= sh-pfc/
> -obj-$(CONFIG_PLAT_SPEAR)	+= spear/
> -obj-$(CONFIG_ARCH_SUNXI)	+= sunxi/
> -obj-$(CONFIG_ARCH_UNIPHIER)	+= uniphier/
> -obj-$(CONFIG_ARCH_VT8500)	+= vt8500/
> -obj-$(CONFIG_ARCH_MEDIATEK)	+= mediatek/
> +obj-y				+= qcom/
> +obj-y				+= samsung/
> +obj-y				+= sh-pfc/
> +obj-y				+= spear/
> +obj-y				+= sunxi/
> +obj-y				+= uniphier/
> +obj-y				+= vt8500/
> +obj-y				+= mediatek/


Currently, I only see COMPILE_TEST under  bcm/, mediatek/, and qcom/.
For the others, Kbuild would descend into unneeded subdirectories
just for creating empty built-in.o objects.

Moreover, samsung/ and sh-pfc/ are already enabled by CONFIG_PINCTRL_*.
No need to change these two at least.

Best Regards
Masahiro Yamada


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

end of thread, other threads:[~2015-10-15  6:20 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-11 15:40 [PATCH] pinctrl: always include all subdirectories in build Jonas Gorski
2015-10-11 16:27 ` Viresh Kumar
2015-10-11 18:36 ` Matthias Brugger
2015-10-11 19:15 ` Laurent Pinchart
2015-10-12  7:17 ` Thomas Petazzoni
2015-10-12 10:55 ` Mika Westerberg
2015-10-12 19:26 ` Eric Anholt
2015-10-13 15:59 ` Bjorn Andersson
2015-10-15  5:08 ` Ray Jui
2015-10-15  6:10 ` yamada.masahiro

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.