diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2012-04-07 14:31:33 -0600 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2012-04-07 14:35:28 -0600 |
commit | f141ed65f256ec036c7fba604da6b7c448096ef9 (patch) | |
tree | b94001a7818a860aabfdd35b2867313fb07e114e /drivers/gpio/Makefile | |
parent | 93baa65fe50a83056c97973de2300337b000472e (diff) | |
download | linux-3.10-f141ed65f256ec036c7fba604da6b7c448096ef9.tar.gz linux-3.10-f141ed65f256ec036c7fba604da6b7c448096ef9.tar.bz2 linux-3.10-f141ed65f256ec036c7fba604da6b7c448096ef9.zip |
gpio: Move DT support code into drivers/gpio
The code in drivers/of/gpio.c isn't shared by any other subsystem since it
is all gpiolib specific. drivers/gpio is a better place to maintain these
functions.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Cc: Rob Herring <rob.herring@calxeda.com>
Cc: Linus Walleij <linus.walleij@stericsson.com>
Diffstat (limited to 'drivers/gpio/Makefile')
-rw-r--r-- | drivers/gpio/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile index 007f54bd008..1c2f6c0a835 100644 --- a/drivers/gpio/Makefile +++ b/drivers/gpio/Makefile @@ -3,6 +3,7 @@ ccflags-$(CONFIG_DEBUG_GPIO) += -DDEBUG obj-$(CONFIG_GPIOLIB) += gpiolib.o devres.o +obj-$(CONFIG_OF_GPIO) += gpiolib-of.o # Device drivers. Generally keep list sorted alphabetically obj-$(CONFIG_GPIO_GENERIC) += gpio-generic.o |