mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-03 07:06:47 +07:00
b5417019a6
This adds a simple driver supporting the new LED framework with triggers and all for the RealView and Versatile platforms. The RealView and Versatile platform drivers were arranged to compile for all-but-integrator as a side effect since the Integrator has a different LED driver. Signed-off-by: Linus Walleij <triad@df.lth.se> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
8 lines
203 B
Makefile
8 lines
203 B
Makefile
obj-y := clock.o
|
|
obj-$(CONFIG_ARM_TIMER_SP804) += timer-sp.o
|
|
# For all but the Integrator, compile these
|
|
ifeq ($(CONFIG_ARCH_INTEGRATOR),)
|
|
obj-y += sched-clock.o
|
|
obj-$(CONFIG_LEDS_CLASS) += leds.o
|
|
endif
|