mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 01:30:54 +07:00
323d771745
As SPI platform devices are consolidated to plat-samsung, some corresponding changes are required in the respective machine folder. Added SPI Setup file for GPIO configurations and platform data initialization. Signed-off-by: Padmavathi Venna <padma.v@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
36 lines
808 B
Makefile
36 lines
808 B
Makefile
# arch/arm/mach-s5pc100/Makefile
|
|
#
|
|
# Copyright 2009 Samsung Electronics Co.
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
obj-y :=
|
|
obj-m :=
|
|
obj-n :=
|
|
obj- :=
|
|
|
|
# Core support for S5PC100 system
|
|
|
|
obj-$(CONFIG_CPU_S5PC100) += cpu.o init.o clock.o
|
|
obj-$(CONFIG_CPU_S5PC100) += setup-i2c0.o
|
|
obj-$(CONFIG_CPU_S5PC100) += dma.o
|
|
|
|
# Helper and device support
|
|
|
|
obj-$(CONFIG_S5PC100_SETUP_FB_24BPP) += setup-fb-24bpp.o
|
|
obj-$(CONFIG_S5PC100_SETUP_I2C1) += setup-i2c1.o
|
|
obj-$(CONFIG_S5PC100_SETUP_IDE) += setup-ide.o
|
|
obj-$(CONFIG_S5PC100_SETUP_KEYPAD) += setup-keypad.o
|
|
obj-$(CONFIG_S5PC100_SETUP_SDHCI_GPIO) += setup-sdhci-gpio.o
|
|
obj-$(CONFIG_S5PC100_SETUP_SPI) += setup-spi.o
|
|
|
|
# device support
|
|
obj-y += dev-audio.o
|
|
|
|
# machine support
|
|
|
|
obj-$(CONFIG_MACH_SMDKC100) += mach-smdkc100.o
|
|
|
|
# device support
|
|
obj-y += dev-audio.o
|