Re: [PATCH 1/6] clk: tegra: don't abort clk init on error

2014-08-15 Thread Peter De Schrijver
On Tue, Jul 22, 2014 at 07:16:15PM +0200, Stephen Warren wrote: On 07/15/2014 09:24 AM, Peter De Schrijver wrote: Just continue initializing clocks if there's an error on one of them. This is useful if there's a mistake in the inittable, because the system could hang if clk_disable_unused()

Re: [PATCH 1/6] clk: tegra: don't abort clk init on error

2014-07-22 Thread Stephen Warren
On 07/15/2014 09:24 AM, Peter De Schrijver wrote: Just continue initializing clocks if there's an error on one of them. This is useful if there's a mistake in the inittable, because the system could hang if clk_disable_unused() disables some of the critical clocks in this table. If there's a

Re: [PATCH 1/6] clk: tegra: don't abort clk init on error

2014-07-16 Thread Thierry Reding
On Tue, Jul 15, 2014 at 06:24:31PM +0300, Peter De Schrijver wrote: Just continue initializing clocks if there's an error on one of them. This is useful if there's a mistake in the inittable, because the system could hang if clk_disable_unused() disables some of the critical clocks in this

[PATCH 1/6] clk: tegra: don't abort clk init on error

2014-07-15 Thread Peter De Schrijver
Just continue initializing clocks if there's an error on one of them. This is useful if there's a mistake in the inittable, because the system could hang if clk_disable_unused() disables some of the critical clocks in this table. Signed-off-by: Peter De Schrijver pdeschrij...@nvidia.com ---