mirror of
https://github.com/torvalds/linux.git
synced 2024-12-17 00:21:32 +00:00
fbf1eadf95
Change the Ux500 devices to be dynamically allocated and added by calling functions instead of referencing structures, thereby allowing 5500 and other derivatives' support to be added without having to duplicate structures, use fixup functions, or use compile-time macros. Signed-off-by: Rabin Vincent <rabin.vincent@stericsson.com> Signed-off-by: Linus Walleij <linus.walleij@stericsson.com>
16 lines
614 B
Makefile
16 lines
614 B
Makefile
#
|
|
# Makefile for the linux kernel, U8500 machine.
|
|
#
|
|
|
|
obj-y := clock.o cpu.o devices.o devices-common.o
|
|
obj-$(CONFIG_UX500_SOC_DB5500) += cpu-db5500.o devices-db5500.o
|
|
obj-$(CONFIG_UX500_SOC_DB8500) += cpu-db8500.o devices-db8500.o prcmu.o
|
|
obj-$(CONFIG_MACH_U8500_MOP) += board-mop500.o board-mop500-sdi.o
|
|
obj-$(CONFIG_MACH_U5500) += board-u5500.o
|
|
obj-$(CONFIG_SMP) += platsmp.o headsmp.o
|
|
obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o
|
|
obj-$(CONFIG_LOCAL_TIMERS) += localtimer.o
|
|
obj-$(CONFIG_REGULATOR_AB8500) += board-mop500-regulators.o
|
|
obj-$(CONFIG_U5500_MODEM_IRQ) += modem_irq.o
|
|
obj-$(CONFIG_U5500_MBOX) += mbox.o
|