diff options
author | Sonic Zhang <sonic.zhang@analog.com> | 2013-09-03 16:29:00 +0800 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-09-19 14:39:32 +0200 |
commit | ffb7fc0f6d2d630cb9e6e37e67993aaa342819f1 (patch) | |
tree | 4706988a971b9e235e7da19911656b42f4dab713 /arch/blackfin/kernel/Makefile | |
parent | e9a03add0c6ed5341fc59ff9c76843c2888a33fa (diff) | |
download | op-kernel-dev-ffb7fc0f6d2d630cb9e6e37e67993aaa342819f1.zip op-kernel-dev-ffb7fc0f6d2d630cb9e6e37e67993aaa342819f1.tar.gz |
blackfin: gpio: Remove none gpio lib code.
- Remove non gpio lib code from blackfin architecture.
- Limit the lagecy blackfin gpio driver to bf5xx processors only.
- Remove unused definition of the pint power functions.
Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'arch/blackfin/kernel/Makefile')
-rw-r--r-- | arch/blackfin/kernel/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/blackfin/kernel/Makefile b/arch/blackfin/kernel/Makefile index 735f24e..703dc7c 100644 --- a/arch/blackfin/kernel/Makefile +++ b/arch/blackfin/kernel/Makefile @@ -7,7 +7,7 @@ extra-y := vmlinux.lds obj-y := \ entry.o process.o bfin_ksyms.o ptrace.o setup.o signal.o \ sys_bfin.o traps.o irqchip.o dma-mapping.o flat.o \ - fixed_code.o reboot.o bfin_gpio.o bfin_dma.o \ + fixed_code.o reboot.o bfin_dma.o \ exception.o dumpstack.o ifeq ($(CONFIG_GENERIC_CLOCKEVENTS),y) @@ -16,6 +16,7 @@ else obj-y += time.o endif +obj-$(CONFIG_GPIO_ADI) += bfin_gpio.o obj-$(CONFIG_DYNAMIC_FTRACE) += ftrace.o obj-$(CONFIG_FUNCTION_TRACER) += ftrace-entry.o obj-$(CONFIG_FUNCTION_GRAPH_TRACER) += ftrace.o |