-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARM: rationalize versatile family Kconfig/Makefile
Move leds and sched_clock build conditionals out of the Makefile into the Kconfig file. Move selection of HAVE_SCHED_CLOCK into the platform Kconfig rather than duplicating it three times in the main architecture Kconfig. Acked-by: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
- Loading branch information
Russell King
committed
Feb 19, 2011
1 parent
f093728
commit dc37c31
Showing
3 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
obj-y := clock.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 | ||
obj-$(CONFIG_PLAT_VERSATILE_CLCD) += clcd.o | ||
obj-$(CONFIG_PLAT_VERSATILE_LEDS) += leds.o | ||
obj-$(CONFIG_PLAT_VERSATILE_SCHED_CLOCK) += sched-clock.o | ||
|