]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
pinctrl: fix build when CONFIG_OF && !CONFIG_PINCTRL
authorStephen Warren <swarren@nvidia.com>
Wed, 4 Apr 2012 03:53:56 +0000 (21:53 -0600)
committerLinus Walleij <linus.walleij@linaro.org>
Wed, 11 Apr 2012 08:28:36 +0000 (10:28 +0200)
pinctrl/devicetree.c won't compile when !CONFIG_PINCTRL, since the
pinctrl headers don't declare some types when !PINCTRL. Make sure
pinctrl/Makefile only attempts to compile devicetree.c when OF &&
PINCTRL.

Acked-by: Dong Aisheng <dong.aisheng@linaro.org>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/Makefile

index 049c9fb39dab3df1586d1d99d652524062ca0860..8e3c95a02fbd041281edc5ef11045e97dfed317f 100644 (file)
@@ -5,7 +5,9 @@ ccflags-$(CONFIG_DEBUG_PINCTRL) += -DDEBUG
 obj-$(CONFIG_PINCTRL)          += core.o
 obj-$(CONFIG_PINMUX)           += pinmux.o
 obj-$(CONFIG_PINCONF)          += pinconf.o
-obj-$(CONFIG_OF)               += devicetree.o
+ifeq ($(CONFIG_OF),y)
+obj-$(CONFIG_PINCTRL)          += devicetree.o
+endif
 obj-$(CONFIG_GENERIC_PINCONF)  += pinconf-generic.o
 obj-$(CONFIG_PINCTRL_PXA3xx)   += pinctrl-pxa3xx.o
 obj-$(CONFIG_PINCTRL_MMP2)     += pinctrl-mmp2.o