cc511b8d84
This patch introduces common.[ch] which are used only in the arch/arm/mach-exynos/ directory. The common.c file merges the cpu.c, init.c, irq-combiner.c and irq-eint.c files which are used commonly on EXYNOS SoCs and the common.h file replaces with plat/exynos4.h file. Cc: Ben Dooks <ben-linux@fluff.org> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
28 lines
606 B
Makefile
28 lines
606 B
Makefile
# arch/arm/plat-s5p/Makefile
|
|
#
|
|
# Copyright (c) 2009 Samsung Electronics Co., Ltd.
|
|
# http://www.samsung.com/
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
obj-y :=
|
|
obj-m :=
|
|
obj-n := dummy.o
|
|
obj- :=
|
|
|
|
# Core files
|
|
|
|
obj-y += dev-uart.o
|
|
obj-y += clock.o
|
|
obj-y += irq.o
|
|
obj-$(CONFIG_S5P_EXT_INT) += irq-eint.o
|
|
obj-$(CONFIG_S5P_GPIO_INT) += irq-gpioint.o
|
|
obj-$(CONFIG_S5P_SYSTEM_MMU) += sysmmu.o
|
|
obj-$(CONFIG_S5P_PM) += pm.o irq-pm.o
|
|
obj-$(CONFIG_S5P_SLEEP) += sleep.o
|
|
obj-$(CONFIG_S5P_HRT) += s5p-time.o
|
|
|
|
# devices
|
|
obj-$(CONFIG_S5P_DEV_MFC) += dev-mfc.o
|
|
obj-$(CONFIG_S5P_SETUP_MIPIPHY) += setup-mipiphy.o
|