From: Tony Lindgren Date: Wed, 15 Sep 2010 17:18:51 +0000 (-0700) Subject: omap: Fix compile dependency to LEDS_CLASS X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=359f64f7b3997e94ee71039b5fcdc1278b9b77c4;p=deliverable%2Flinux.git omap: Fix compile dependency to LEDS_CLASS If we LEDS_CLASS is not selected, we will get undefined reference to `led_classdev_register'. Signed-off-by: Tony Lindgren --- diff --git a/arch/arm/plat-omap/Kconfig b/arch/arm/plat-omap/Kconfig index e39a417a368d..a92cb499313f 100644 --- a/arch/arm/plat-omap/Kconfig +++ b/arch/arm/plat-omap/Kconfig @@ -33,7 +33,7 @@ config OMAP_DEBUG_DEVICES config OMAP_DEBUG_LEDS bool depends on OMAP_DEBUG_DEVICES - default y if LEDS + default y if LEDS_CLASS config OMAP_RESET_CLOCKS bool "Reset unused clocks during boot"