Commit 592e527f authored by Ralf Baechle's avatar Ralf Baechle
Browse files

MIPS: Fix build error if CONFIG_CEVT_R4K is undefined.



Introduced by 99aa5029937ee926e3b249369e208d7013cd381b.

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent a575b845
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;