Re: [PATCH 4/4] sh: remove board_time_init() callback

From: Arnd Bergmann
Date: Fri Apr 20 2018 - 17:51:28 EST


On Fri, Apr 20, 2018 at 5:48 PM, Arnd Bergmann <arnd@xxxxxxxx> wrote:

> @@ -41,8 +39,7 @@ static void __init sh_late_time_init(void)
>
> void __init time_init(void)
> {
> - if (board_time_init)
> - board_time_init();
> + timer_init();

Testing revealed this to be broken, the fix is:

diff --git a/arch/sh/kernel/time.c b/arch/sh/kernel/time.c
index a29eb989d81b..8a1c6c8ab4ec 100644
--- a/arch/sh/kernel/time.c
+++ b/arch/sh/kernel/time.c
@@ -39,7 +39,7 @@ static void __init sh_late_time_init(void)

void __init time_init(void)
{
- timer_init();
+ timer_probe();

clk_init();

Let me know if you'd like me to resend the series with that typo fixed.

Arnd