diff options
author | Ben Dooks <ben-linux@fluff.org> | 2010-01-25 21:19:18 -0500 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2010-02-20 17:32:01 -0500 |
commit | 88fc68a280709f3fb9488986ab39eac330d17b6d (patch) | |
tree | b9f9a91f3bd6e735cf611f3cec7438f86fd3e4f7 /arch/arm/mach-s3c64xx/Makefile | |
parent | ed618aff8a952f712caf1d475e0947a32a8b6606 (diff) |
ARM: S3C64XX: Move device and device setup into mach-s3c64xx
Move the S3C64XX specific device and setup files into mach-s3c64xx as
they are unlikely to be used outside of this code.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s3c64xx/Makefile')
-rw-r--r-- | arch/arm/mach-s3c64xx/Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c64xx/Makefile b/arch/arm/mach-s3c64xx/Makefile index 103bed48b46e..49b71d5f2e59 100644 --- a/arch/arm/mach-s3c64xx/Makefile +++ b/arch/arm/mach-s3c64xx/Makefile | |||
@@ -18,9 +18,13 @@ obj-$(CONFIG_CPU_S3C6410) += s3c6410.o | |||
18 | obj-y += irq.o | 18 | obj-y += irq.o |
19 | obj-y += irq-eint.o | 19 | obj-y += irq-eint.o |
20 | 20 | ||
21 | # setup support | 21 | # Device setup |
22 | 22 | ||
23 | obj-$(CONFIG_S3C64XX_SETUP_I2C0) += setup-i2c0.o | ||
24 | obj-$(CONFIG_S3C64XX_SETUP_I2C1) += setup-i2c1.o | ||
23 | obj-$(CONFIG_S3C64XX_SETUP_SDHCI) += setup-sdhci.o | 25 | obj-$(CONFIG_S3C64XX_SETUP_SDHCI) += setup-sdhci.o |
26 | obj-$(CONFIG_S3C64XX_SETUP_FB_24BPP) += setup-fb-24bpp.o | ||
27 | obj-$(CONFIG_S3C64XX_SETUP_SDHCI_GPIO) += setup-sdhci-gpio.o | ||
24 | 28 | ||
25 | # PM | 29 | # PM |
26 | 30 | ||
@@ -33,3 +37,10 @@ obj-$(CONFIG_MACH_SMDK6400) += mach-smdk6400.o | |||
33 | obj-$(CONFIG_MACH_SMDK6410) += mach-smdk6410.o | 37 | obj-$(CONFIG_MACH_SMDK6410) += mach-smdk6410.o |
34 | obj-$(CONFIG_MACH_NCP) += mach-ncp.o | 38 | obj-$(CONFIG_MACH_NCP) += mach-ncp.o |
35 | obj-$(CONFIG_MACH_HMT) += mach-hmt.o | 39 | obj-$(CONFIG_MACH_HMT) += mach-hmt.o |
40 | |||
41 | # device support | ||
42 | |||
43 | obj-y += dev-uart.o | ||
44 | obj-y += dev-rtc.o | ||
45 | obj-$(CONFIG_S3C_ADC) += dev-adc.o | ||
46 | obj-$(CONFIG_SND_S3C24XX_SOC) += dev-audio.o | ||