diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2009-04-05 22:31:22 (GMT) |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-05-14 12:50:25 (GMT) |
commit | 592e527f5b7c17e9be8fc58a63c3f918827b4b92 (patch) | |
tree | 5056e8476532da646ae75d7be4ced11e828ddfe7 | |
parent | a575b8453944c5911a2a6f51d0096fffba82dd48 (diff) | |
download | linux-592e527f5b7c17e9be8fc58a63c3f918827b4b92.tar.xz |
MIPS: Fix build error if CONFIG_CEVT_R4K is undefined.
Introduced by 99aa5029937ee926e3b249369e208d7013cd381b.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/include/asm/time.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/include/asm/time.h b/arch/mips/include/asm/time.h index e46f23f..df6a430 100644 --- a/arch/mips/include/asm/time.h +++ b/arch/mips/include/asm/time.h @@ -61,7 +61,7 @@ static inline int mips_clockevent_init(void) extern int smtc_clockevent_init(void); return smtc_clockevent_init(); -#elif CONFIG_CEVT_R4K +#elif defined(CONFIG_CEVT_R4K) return r4k_clockevent_init(); #else return -ENXIO; |