diff options
author | Ben Dooks <ben@simtec.co.uk> | 2009-02-26 21:55:57 +0000 |
---|---|---|
committer | Andy Green <agreen@octopus.localdomain> | 2009-02-26 21:55:57 +0000 |
commit | a3cb89901ee2eaa1383927ba65b46119d2a2d380 (patch) | |
tree | 434d4831b63615a06192ddaeb6690aae5de93685 /arch/arm/plat-s3c | |
parent | aa4ff3f45339787e9ec2f4d44e39db76f57663de (diff) |
S3C64XX: Fix DMA makefile
Fix missing dma.o build if CONFIG_S3C_DMA
Signed-off-by: Ben Dooks <ben@simtec.co.uk>
Diffstat (limited to 'arch/arm/plat-s3c')
-rw-r--r-- | arch/arm/plat-s3c/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/plat-s3c/Makefile b/arch/arm/plat-s3c/Makefile index a78d41dca2e..664ba5cc39e 100644 --- a/arch/arm/plat-s3c/Makefile +++ b/arch/arm/plat-s3c/Makefile @@ -18,6 +18,10 @@ obj-y += pwm-clock.o obj-y += gpio.o obj-y += gpio-config.o +# DMA support + +obj-$(CONFIG_S3C_DMA) += dma.o + # PM support obj-$(CONFIG_PM) += pm.o |