Commit 7ebe6810 authored by kbuild test robot's avatar kbuild test robot Committed by Daniel Lezcano

clocksource/drivers/timer-atmel-tcb: Convert tc_clksrc_suspend|resume() to static

Statisticize tc_clksrc_suspend and tc_clksrc_resume.
Signed-off-by: default avatarkbuild test robot <lkp@intel.com>
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
parent a7aae768
...@@ -66,7 +66,7 @@ static u64 tc_get_cycles32(struct clocksource *cs) ...@@ -66,7 +66,7 @@ static u64 tc_get_cycles32(struct clocksource *cs)
return readl_relaxed(tcaddr + ATMEL_TC_REG(0, CV)); return readl_relaxed(tcaddr + ATMEL_TC_REG(0, CV));
} }
void tc_clksrc_suspend(struct clocksource *cs) static void tc_clksrc_suspend(struct clocksource *cs)
{ {
int i; int i;
...@@ -81,7 +81,7 @@ void tc_clksrc_suspend(struct clocksource *cs) ...@@ -81,7 +81,7 @@ void tc_clksrc_suspend(struct clocksource *cs)
bmr_cache = readl(tcaddr + ATMEL_TC_BMR); bmr_cache = readl(tcaddr + ATMEL_TC_BMR);
} }
void tc_clksrc_resume(struct clocksource *cs) static void tc_clksrc_resume(struct clocksource *cs)
{ {
int i; int i;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment