lib: time: update module enable MACRO
authorKever Yang <kever.yang@rock-chips.com>
Fri, 29 Mar 2019 14:17:33 +0000 (22:17 +0800)
committerTom Rini <trini@konsulko.com>
Fri, 29 Mar 2019 14:53:18 +0000 (10:53 -0400)
We'd better use correct way to check if module has enabled.
for we have 3 timer MACRO:
- CONFIG_TIMER
- CONFIG_SPL_TIMER
- CONFIG_TPL_TIMER

Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
lib/time.c

index 3bf678a..9c55da6 100644 (file)
@@ -56,7 +56,7 @@ ulong timer_get_boot_us(void)
 extern unsigned long __weak timer_read_counter(void);
 #endif
 
-#ifdef CONFIG_TIMER
+#if CONFIG_IS_ENABLED(TIMER)
 ulong notrace get_tbclk(void)
 {
        if (!gd->timer) {