mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 10:13:57 +08:00
b7d861d939
Currently there were two part of DMAC PL330 driver for support old styled s3c-pl330 which has been merged into drivers/dma/pl330.c driver. Actually, there is no reason to separate them now. Basically this patch merges arch/arm/common/pl330.c into drivers/dma/pl330.c driver and removes useless exported symbol, externed function and so on. The newer pl330 driver tested on SMDKV310 and SMDK4212 boards Cc: Jassi Brar <jassisinghbrar@gmail.com> Cc: Russell King <rmk+kernel@arm.linux.org.uk> Acked-by: Linus Walleij <linus.walleij@linaro.org> Acked-by: Vinod Koul <vinod.koul@intel.com> Signed-off-by: Boojin Kim <boojin.kim@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com> Acked-by: Jassi Brar <jassisinghbrar@gmail.com> Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
19 lines
585 B
Makefile
19 lines
585 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
obj-$(CONFIG_ARM_GIC) += gic.o
|
|
obj-$(CONFIG_ARM_VIC) += vic.o
|
|
obj-$(CONFIG_ICST) += icst.o
|
|
obj-$(CONFIG_SA1111) += sa1111.o
|
|
obj-$(CONFIG_PCI_HOST_VIA82C505) += via82c505.o
|
|
obj-$(CONFIG_DMABOUNCE) += dmabounce.o
|
|
obj-$(CONFIG_TIMER_ACORN) += time-acorn.o
|
|
obj-$(CONFIG_SHARP_LOCOMO) += locomo.o
|
|
obj-$(CONFIG_SHARP_PARAM) += sharpsl_param.o
|
|
obj-$(CONFIG_SHARP_SCOOP) += scoop.o
|
|
obj-$(CONFIG_ARCH_IXP2000) += uengine.o
|
|
obj-$(CONFIG_ARCH_IXP23XX) += uengine.o
|
|
obj-$(CONFIG_PCI_HOST_ITE8152) += it8152.o
|
|
obj-$(CONFIG_ARM_TIMER_SP804) += timer-sp.o
|