Commit 4afe2684 authored by Maxime Coquelin's avatar Maxime Coquelin Committed by Linus Walleij
Browse files

pinctrl: stm32: Fix compile testing selection



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: default avatarMaxime Coquelin <mcoquelin.stm32@gmail.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 38a3fbf1
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -46,7 +46,7 @@ obj-$(CONFIG_ARCH_QCOM) += qcom/
obj-$(CONFIG_PINCTRL_SAMSUNG)	+= samsung/
obj-$(CONFIG_PINCTRL_SAMSUNG)	+= samsung/
obj-$(CONFIG_PINCTRL_SH_PFC)	+= sh-pfc/
obj-$(CONFIG_PINCTRL_SH_PFC)	+= sh-pfc/
obj-$(CONFIG_PINCTRL_SPEAR)	+= spear/
obj-$(CONFIG_PINCTRL_SPEAR)	+= spear/
obj-$(CONFIG_ARCH_STM32)	+= stm32/
obj-$(CONFIG_PINCTRL_STM32)	+= stm32/
obj-$(CONFIG_PINCTRL_SUNXI)	+= sunxi/
obj-$(CONFIG_PINCTRL_SUNXI)	+= sunxi/
obj-$(CONFIG_PINCTRL_UNIPHIER)	+= uniphier/
obj-$(CONFIG_PINCTRL_UNIPHIER)	+= uniphier/
obj-$(CONFIG_ARCH_VT8500)	+= vt8500/
obj-$(CONFIG_ARCH_VT8500)	+= vt8500/