mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 07:16:43 +07:00
95af214bec
This patch introduces common.[ch] which are used only in the arch/arm/mach-s5p64x0/ directory. The common.c file merges the cpu.c, init.c and irq-eint.c files which are used commonly on S5P64X0 SoCs and the common.h local header file replaces with plat/s5p6440.h and plat/s5p6450.h files. 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>
36 lines
707 B
Makefile
36 lines
707 B
Makefile
# arch/arm/mach-s5p64x0/Makefile
|
|
#
|
|
# Copyright (c) 2009-2010 Samsung Electronics Co., Ltd.
|
|
# http://www.samsung.com
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
obj-y :=
|
|
obj-m :=
|
|
obj-n :=
|
|
obj- :=
|
|
|
|
# Core
|
|
|
|
obj-y += common.o clock.o
|
|
obj-$(CONFIG_CPU_S5P6440) += clock-s5p6440.o
|
|
obj-$(CONFIG_CPU_S5P6450) += clock-s5p6450.o
|
|
|
|
obj-$(CONFIG_PM) += pm.o irq-pm.o
|
|
|
|
obj-y += dma.o
|
|
|
|
# machine support
|
|
|
|
obj-$(CONFIG_MACH_SMDK6440) += mach-smdk6440.o
|
|
obj-$(CONFIG_MACH_SMDK6450) += mach-smdk6450.o
|
|
|
|
# device support
|
|
|
|
obj-y += dev-audio.o
|
|
obj-$(CONFIG_S3C64XX_DEV_SPI) += dev-spi.o
|
|
|
|
obj-y += setup-i2c0.o
|
|
obj-$(CONFIG_S5P64X0_SETUP_I2C1) += setup-i2c1.o
|
|
obj-$(CONFIG_S5P64X0_SETUP_FB_24BPP) += setup-fb-24bpp.o
|