Add a sched_clock() implementation to Versatile Express using the new sched_clock() infrastructure for extending 32bit counters to full 64-bit nanoseconds. Tested-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
10 lines
239 B
Makefile
10 lines
239 B
Makefile
obj-y := clock.o
|
|
obj-$(CONFIG_ARM_TIMER_SP804) += timer-sp.o
|
|
ifneq ($(CONFIG_ARCH_INTEGRATOR),y)
|
|
obj-y += sched-clock.o
|
|
endif
|
|
ifeq ($(CONFIG_LEDS_CLASS),y)
|
|
obj-$(CONFIG_ARCH_REALVIEW) += leds.o
|
|
obj-$(CONFIG_ARCH_VERSATILE) += leds.o
|
|
endif
|