20 Oct, 2016

2 commits

  • I made a mistake as for naming for this block. The MIO block is not
    implemented for these 3 SoCs in the first place. The current naming
    will be a trouble if an SoC with both MIO and SD-ctrl blocks appear
    in the future.

    This driver has just been merged in the previous merge window.
    Rename it before the release.

    Signed-off-by: Masahiro Yamada
    Signed-off-by: Stephen Boyd

    Masahiro Yamada
     
  • The first loop of this "for" statement writes memory beyond the
    allocated clk_hw_onecell_data.

    It should be:
    for (clk_num--; clk_num >= 0; clk_num--)
    ...

    Or more simply:
    while (--clk_num >= 0)
    ...

    Fixes: 734d82f4a678 ("clk: uniphier: add core support code for UniPhier clock driver")
    Signed-off-by: Masahiro Yamada
    Signed-off-by: Stephen Boyd

    Masahiro Yamada
     

18 Oct, 2016

2 commits


17 Sep, 2016

2 commits