diff options
author | Mike Frysinger <vapier.adi@gmail.com> | 2008-11-18 04:48:22 -0500 |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2008-11-18 04:48:22 -0500 |
commit | 55e359a825d25cecea2007db3e4018675e42f1af (patch) | |
tree | 3e7b4cfdda7d9916a7b536ecf8cf73d00066789a /arch/blackfin | |
parent | ecdbfc1ac10eaba04c699d6f8a004f987622264c (diff) |
Blackfin arch: remove BFIN_DMA_5XX option
Do not make BFIN_DMA_5XX optional since a large portion of our code
relies on dma functions existing
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/Kconfig | 7 | ||||
-rw-r--r-- | arch/blackfin/kernel/Makefile | 3 |
2 files changed, 1 insertions, 9 deletions
diff --git a/arch/blackfin/Kconfig b/arch/blackfin/Kconfig index e0adb8632d89..72ff71949045 100644 --- a/arch/blackfin/Kconfig +++ b/arch/blackfin/Kconfig | |||
@@ -795,16 +795,9 @@ config BFIN_GPTIMERS | |||
795 | To compile this driver as a module, choose M here: the module | 795 | To compile this driver as a module, choose M here: the module |
796 | will be called gptimers.ko. | 796 | will be called gptimers.ko. |
797 | 797 | ||
798 | config BFIN_DMA_5XX | ||
799 | bool "Enable DMA Support" | ||
800 | default y | ||
801 | help | ||
802 | DMA driver for Blackfin parts. | ||
803 | |||
804 | choice | 798 | choice |
805 | prompt "Uncached DMA region" | 799 | prompt "Uncached DMA region" |
806 | default DMA_UNCACHED_1M | 800 | default DMA_UNCACHED_1M |
807 | depends on BFIN_DMA_5XX | ||
808 | config DMA_UNCACHED_4M | 801 | config DMA_UNCACHED_4M |
809 | bool "Enable 4M DMA region" | 802 | bool "Enable 4M DMA region" |
810 | config DMA_UNCACHED_2M | 803 | config DMA_UNCACHED_2M |
diff --git a/arch/blackfin/kernel/Makefile b/arch/blackfin/kernel/Makefile index 606adc78aa85..751115970dee 100644 --- a/arch/blackfin/kernel/Makefile +++ b/arch/blackfin/kernel/Makefile | |||
@@ -7,7 +7,7 @@ extra-y := init_task.o vmlinux.lds | |||
7 | obj-y := \ | 7 | obj-y := \ |
8 | entry.o process.o bfin_ksyms.o ptrace.o setup.o signal.o \ | 8 | entry.o process.o bfin_ksyms.o ptrace.o setup.o signal.o \ |
9 | sys_bfin.o traps.o irqchip.o dma-mapping.o flat.o \ | 9 | sys_bfin.o traps.o irqchip.o dma-mapping.o flat.o \ |
10 | fixed_code.o reboot.o bfin_gpio.o | 10 | fixed_code.o reboot.o bfin_gpio.o bfin_dma_5xx.o |
11 | 11 | ||
12 | ifeq ($(CONFIG_GENERIC_CLOCKEVENTS),y) | 12 | ifeq ($(CONFIG_GENERIC_CLOCKEVENTS),y) |
13 | obj-y += time-ts.o | 13 | obj-y += time-ts.o |
@@ -17,6 +17,5 @@ endif | |||
17 | 17 | ||
18 | obj-$(CONFIG_BFIN_GPTIMERS) += gptimers.o | 18 | obj-$(CONFIG_BFIN_GPTIMERS) += gptimers.o |
19 | obj-$(CONFIG_MODULES) += module.o | 19 | obj-$(CONFIG_MODULES) += module.o |
20 | obj-$(CONFIG_BFIN_DMA_5XX) += bfin_dma_5xx.o | ||
21 | obj-$(CONFIG_KGDB) += kgdb.o | 20 | obj-$(CONFIG_KGDB) += kgdb.o |
22 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o | 21 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o |