lkml.org 
[lkml]   [2011]   [Oct]   [25]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH] arm/tegra: clk_get should not be fatal
From
Date
On Tue, 2011-10-25 at 19:15 +0300, pdeschrijver@nvidia.com wrote:
> The timer and rtc-timer clocks aren't gated by default, so there is no reason
> to crash the system if the dummy enable call failed.
[]
> diff --git a/arch/arm/mach-tegra/timer.c b/arch/arm/mach-tegra/timer.c
[]
> @@ -186,16 +186,20 @@ static void __init tegra_init_timer(void)
> int ret;
>
> clk = clk_get_sys("timer", NULL);
> - BUG_ON(IS_ERR(clk));
> - clk_enable(clk);
> + if (IS_ERR(clk))
> + pr_warning("Unable to get timer clock");
> + else
> + clk_enable(clk);
>
> /*
> * rtc registers are used by read_persistent_clock, keep the rtc clock
> * enabled
> */
> clk = clk_get_sys("rtc-tegra", NULL);
> - BUG_ON(IS_ERR(clk));
> - clk_enable(clk);
> + if (IS_ERR(clk))
> + pr_warning("Unable to get rtc-tegra clock");
> + else
> + clk_enable(clk);

Are these messages are really necessary?
Maybe just:
if (!IS_ERR(clk))
clk_enable(clk)

If these are really necessary, please use
pr_warn("Unable to get <foo>\n");
pr_warn and with a terminating newline.



\
 
 \ /
  Last update: 2011-10-25 18:29    [W:0.035 / U:0.072 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site