mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-10-31 18:09:19 +00:00
340fcb5cb4
This merges in the revert of multiplatform support for exynos. Trivial conflicts on removed code. Also, needed to add "select COMMON_CLK" to the non-multiplatform EXYNOS config option. * samsung/exynos-multiplatform: Revert "ARM: exynos: enable multiplatform support" Signed-off-by: Olof Johansson <olof@lixom.net>
61 lines
1.3 KiB
Makefile
61 lines
1.3 KiB
Makefile
# arch/arm/plat-samsung/Makefile
|
|
#
|
|
# Copyright 2009 Simtec Electronics
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
obj-y :=
|
|
obj-m :=
|
|
obj-n := dummy.o
|
|
obj- :=
|
|
|
|
# Objects we always build independent of SoC choice
|
|
|
|
obj-y += init.o cpu.o
|
|
obj-$(CONFIG_SAMSUNG_HRT) += samsung-time.o
|
|
|
|
obj-$(CONFIG_SAMSUNG_CLOCK) += clock.o
|
|
obj-$(CONFIG_SAMSUNG_CLOCK) += pwm-clock.o
|
|
|
|
obj-$(CONFIG_SAMSUNG_CLKSRC) += clock-clksrc.o
|
|
obj-$(CONFIG_S5P_CLOCK) += s5p-clock.o
|
|
|
|
obj-$(CONFIG_SAMSUNG_IRQ_VIC_TIMER) += irq-vic-timer.o
|
|
obj-$(CONFIG_S5P_IRQ) += s5p-irq.o
|
|
obj-$(CONFIG_S5P_EXT_INT) += s5p-irq-eint.o
|
|
obj-$(CONFIG_S5P_GPIO_INT) += s5p-irq-gpioint.o
|
|
|
|
# ADC
|
|
|
|
obj-$(CONFIG_S3C_ADC) += adc.o
|
|
|
|
# devices
|
|
|
|
obj-y += platformdata.o
|
|
|
|
obj-y += devs.o
|
|
obj-y += dev-uart.o
|
|
obj-$(CONFIG_S5P_DEV_MFC) += s5p-dev-mfc.o
|
|
obj-$(CONFIG_S5P_DEV_UART) += s5p-dev-uart.o
|
|
|
|
obj-$(CONFIG_SAMSUNG_DEV_BACKLIGHT) += dev-backlight.o
|
|
|
|
obj-$(CONFIG_S3C_SETUP_CAMIF) += setup-camif.o
|
|
obj-$(CONFIG_S5P_SETUP_MIPIPHY) += setup-mipiphy.o
|
|
|
|
# DMA support
|
|
|
|
obj-$(CONFIG_S3C_DMA) += dma.o s3c-dma-ops.o
|
|
|
|
obj-$(CONFIG_SAMSUNG_DMADEV) += dma-ops.o
|
|
|
|
# PM support
|
|
|
|
obj-$(CONFIG_PM) += pm.o
|
|
obj-$(CONFIG_PM) += pm-gpio.o
|
|
obj-$(CONFIG_SAMSUNG_PM_CHECK) += pm-check.o
|
|
|
|
obj-$(CONFIG_SAMSUNG_WAKEMASK) += wakeup-mask.o
|
|
|
|
obj-$(CONFIG_S5P_PM) += s5p-pm.o s5p-irq-pm.o
|
|
obj-$(CONFIG_S5P_SLEEP) += s5p-sleep.o
|