diff options
Diffstat (limited to 'arch/arm/plat-samsung/Makefile')
-rw-r--r-- | arch/arm/plat-samsung/Makefile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/arch/arm/plat-samsung/Makefile b/arch/arm/plat-samsung/Makefile index 4478b9f7dc34..22c89d08f6e5 100644 --- a/arch/arm/plat-samsung/Makefile +++ b/arch/arm/plat-samsung/Makefile | |||
@@ -9,3 +9,48 @@ obj-m := | |||
9 | obj-n := dummy.o | 9 | obj-n := dummy.o |
10 | obj- := | 10 | obj- := |
11 | 11 | ||
12 | # Objects we always build independent of SoC choice | ||
13 | |||
14 | obj-y += init.o | ||
15 | obj-y += time.o | ||
16 | obj-y += clock.o | ||
17 | obj-y += pwm-clock.o | ||
18 | obj-y += gpio.o | ||
19 | obj-y += gpio-config.o | ||
20 | |||
21 | obj-$(CONFIG_SAMSUNG_GPIOLIB_4BIT) += gpiolib.o | ||
22 | obj-$(CONFIG_SAMSUNG_CLKSRC) += clock-clksrc.o | ||
23 | |||
24 | obj-$(CONFIG_SAMSUNG_IRQ_UART) += irq-uart.o | ||
25 | obj-$(CONFIG_SAMSUNG_IRQ_VIC_TIMER) += irq-vic-timer.o | ||
26 | |||
27 | # ADC | ||
28 | |||
29 | obj-$(CONFIG_S3C_ADC) += adc.o | ||
30 | |||
31 | # devices | ||
32 | |||
33 | obj-$(CONFIG_S3C_DEV_HSMMC) += dev-hsmmc.o | ||
34 | obj-$(CONFIG_S3C_DEV_HSMMC1) += dev-hsmmc1.o | ||
35 | obj-$(CONFIG_S3C_DEV_HSMMC2) += dev-hsmmc2.o | ||
36 | obj-y += dev-i2c0.o | ||
37 | obj-$(CONFIG_S3C_DEV_I2C1) += dev-i2c1.o | ||
38 | obj-$(CONFIG_S3C_DEV_FB) += dev-fb.o | ||
39 | obj-y += dev-uart.o | ||
40 | obj-$(CONFIG_S3C_DEV_USB_HOST) += dev-usb.o | ||
41 | obj-$(CONFIG_S3C_DEV_USB_HSOTG) += dev-usb-hsotg.o | ||
42 | obj-$(CONFIG_S3C_DEV_NAND) += dev-nand.o | ||
43 | |||
44 | # DMA support | ||
45 | |||
46 | obj-$(CONFIG_S3C_DMA) += dma.o | ||
47 | |||
48 | # PM support | ||
49 | |||
50 | obj-$(CONFIG_PM) += pm.o | ||
51 | obj-$(CONFIG_PM) += pm-gpio.o | ||
52 | obj-$(CONFIG_SAMSUNG_PM_CHECK) += pm-check.o | ||
53 | |||
54 | # PWM support | ||
55 | |||
56 | obj-$(CONFIG_HAVE_PWM) += pwm.o | ||