From: Mike Frysinger Date: Mon, 30 May 2011 03:11:42 +0000 (-0400) Subject: Blackfin: time: replace magic numbers with defines X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=072a5cff2fcaa4648c98bea6d549fac7ee4174fe;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git Blackfin: time: replace magic numbers with defines Signed-off-by: Mike Frysinger --- diff --git a/arch/blackfin/kernel/time.c b/arch/blackfin/kernel/time.c index 8d73724c0092..ceb2bf63dfe2 100644 --- a/arch/blackfin/kernel/time.c +++ b/arch/blackfin/kernel/time.c @@ -51,7 +51,7 @@ void __init setup_core_timer(void) u32 tcount; /* power up the timer, but don't enable it just yet */ - bfin_write_TCNTL(1); + bfin_write_TCNTL(TMPWR); CSYNC(); /* the TSCALE prescaler counter */ @@ -64,7 +64,7 @@ void __init setup_core_timer(void) /* now enable the timer */ CSYNC(); - bfin_write_TCNTL(7); + bfin_write_TCNTL(TAUTORLD | TMREN | TMPWR); } #endif