Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1329416 > unrolled thread

[PATCH 2/2] pinctrl: stm32: Fix compile testing selection

Started byMaxime Coquelin <mcoquelin.stm32@gmail.com>
First post2016-02-08 19:00 +0100
Last post2016-02-09 11:00 +0100
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 2/2] pinctrl: stm32: Fix compile testing selection Maxime Coquelin <mcoquelin.stm32@gmail.com> - 2016-02-08 19:00 +0100
    Re: [PATCH 2/2] pinctrl: stm32: Fix compile testing selection Linus Walleij <linus.walleij@linaro.org> - 2016-02-09 11:00 +0100

#1329416 — [PATCH 2/2] pinctrl: stm32: Fix compile testing selection

FromMaxime Coquelin <mcoquelin.stm32@gmail.com>
Date2016-02-08 19:00 +0100
Subject[PATCH 2/2] pinctrl: stm32: Fix compile testing selection
Message-ID<qZYgq-75-15@gated-at.bofh.it>
While selecting the driver for compile testing seemed possible,
the driver was not compiled because the driver directory was only
added if ARCH_STM32 was selected.

This patch now makes the pinctrl Makefile to add stm32 directory if
PINCTRL_STM32 is selected.

Signed-off-by: Maxime Coquelin <mcoquelin.stm32@gmail.com>
---
 drivers/pinctrl/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/pinctrl/Makefile b/drivers/pinctrl/Makefile
index 8adc235..7ea62ef 100644
--- a/drivers/pinctrl/Makefile
+++ b/drivers/pinctrl/Makefile
@@ -46,7 +46,7 @@ obj-$(CONFIG_ARCH_QCOM)		+= qcom/
 obj-$(CONFIG_PINCTRL_SAMSUNG)	+= samsung/
 obj-$(CONFIG_PINCTRL_SH_PFC)	+= sh-pfc/
 obj-$(CONFIG_PINCTRL_SPEAR)	+= spear/
-obj-$(CONFIG_ARCH_STM32)	+= stm32/
+obj-$(CONFIG_PINCTRL_STM32)	+= stm32/
 obj-$(CONFIG_PINCTRL_SUNXI)	+= sunxi/
 obj-$(CONFIG_PINCTRL_UNIPHIER)	+= uniphier/
 obj-$(CONFIG_ARCH_VT8500)	+= vt8500/
-- 
1.9.1

[toc] | [next] | [standalone]


#1330012

FromLinus Walleij <linus.walleij@linaro.org>
Date2016-02-09 11:00 +0100
Message-ID<r0dfs-2gR-13@gated-at.bofh.it>
In reply to#1329416
On Mon, Feb 8, 2016 at 6:57 PM, Maxime Coquelin
<mcoquelin.stm32@gmail.com> wrote:

> While selecting the driver for compile testing seemed possible,
> the driver was not compiled because the driver directory was only
> added if ARCH_STM32 was selected.
>
> This patch now makes the pinctrl Makefile to add stm32 directory if
> PINCTRL_STM32 is selected.
>
> Signed-off-by: Maxime Coquelin <mcoquelin.stm32@gmail.com>

Patch applied.

Yours,
Linus Walleij

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web