forked from luck/tmp_suning_uos_patched
4a13c6dc64
We want to use the same timer support code for ColdFire CPU's when running with MMU enabled or not. So use the same time_no.c code even when the MMU is enabled for ColdFire. This also means we do not want CONFIG_ARCH_USES_GETTIMEOFFSET set, since that code is only in time_mm.c. Signed-off-by: Greg Ungerer <gerg@uclinux.org> Acked-by: Matt Waddel <mwaddel@yahoo.com> Acked-by: Kurt Mahan <kmahan@xmission.com> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
6 lines
108 B
C
6 lines
108 B
C
#if defined(CONFIG_MMU) && !defined(CONFIG_COLDFIRE)
|
|
#include "time_mm.c"
|
|
#else
|
|
#include "time_no.c"
|
|
#endif
|