mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 21:30:54 +07:00
3b64c09b37
At the beginning of the first patch series I included the custom ux500 pin control system to make sure I could eventually replace it with the standard subsystem driver. So now that we've done so, let's remove it. Acked-by: Stephen Warren <swarren@wwwdotorg.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
22 lines
757 B
Makefile
22 lines
757 B
Makefile
#
|
|
# Makefile for the linux kernel, U8500 machine.
|
|
#
|
|
|
|
obj-y := clock.o cpu.o devices.o devices-common.o \
|
|
id.o usb.o timer.o
|
|
obj-$(CONFIG_CACHE_L2X0) += cache-l2x0.o
|
|
obj-$(CONFIG_UX500_SOC_DB5500) += cpu-db5500.o dma-db5500.o
|
|
obj-$(CONFIG_UX500_SOC_DB8500) += cpu-db8500.o devices-db8500.o
|
|
obj-$(CONFIG_MACH_MOP500) += board-mop500.o board-mop500-sdi.o \
|
|
board-mop500-regulators.o \
|
|
board-mop500-uib.o board-mop500-stuib.o \
|
|
board-mop500-u8500uib.o \
|
|
board-mop500-pins.o \
|
|
board-mop500-msp.o
|
|
obj-$(CONFIG_MACH_U5500) += board-u5500.o board-u5500-sdi.o
|
|
obj-$(CONFIG_SMP) += platsmp.o headsmp.o
|
|
obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o
|
|
obj-$(CONFIG_U5500_MODEM_IRQ) += modem-irq-db5500.o
|
|
obj-$(CONFIG_U5500_MBOX) += mbox-db5500.o
|
|
|