]> git.baikalelectronics.ru Git - kernel.git/commit
clk: shmobile: Fix MSTP clock array initialization
authorValentine Barshak <valentine.barshak@cogentembedded.com>
Sat, 28 Dec 2013 12:09:09 +0000 (16:09 +0400)
committerMike Turquette <mturquette@linaro.org>
Tue, 14 Jan 2014 19:35:57 +0000 (11:35 -0800)
commit850354169a55572089fe1dcc9fa92111808cb605
treead19af7b435d79c4983522fb6a5c7c3079ce54e2
parent50b34f2e6a3f410c4b4fef1f1350a3f16c9a7f92
clk: shmobile: Fix MSTP clock array initialization

The clks member of the clk_onecell_data structure should
point to a valid clk array (no NULL entries allowed),
and the clk_num should be equal to the number
of elements in the clks array.

The MSTP driver fails to satisfy the above conditions.
The clks array may contain NULL entries if not all
clock-indices are initialized in the device tree.
Thus, if the clock indices are interleaved we end up
with NULL pointers in-between.

The other problem is the driver uses maximum clock index
as the number of clocks, which is incorrect (less than
the actual number of clocks by 1).

Fix the first issue by pre-setting the whole clks array
with ERR_PTR(-ENOENT) pointers instead of zeros; and
use maximum clkidx + 1 as the number of clocks to fix
the other one.

This should make of_clk_src_onecell_get() return the following:
* valid clk pointers for all clocks registered;
* ERR_PTR(-EINVAL) if (idx >= clk_data->clk_num);
* ERR_PTR(-ENOENT) if the clock at the selected index was not
  initialized in the device tree (and was not registered).

Changes in V2:
* removed brackets from the one-line for loop

Signed-off-by: Valentine Barshak <valentine.barshak@cogentembedded.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Tested-by: Ben Dooks <ben.dooks@codethink.co.uk>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
drivers/clk/shmobile/clk-mstp.c