1. 07 11月, 2018 1 次提交
  2. 31 8月, 2018 1 次提交
    • R
      clk: Convert to using %pOFn instead of device_node.name · e665f029
      Rob Herring 提交于
      In preparation to remove the node name pointer from struct device_node,
      convert printf users to use the %pOFn format specifier.
      
      Cc: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
      Cc: Michael Turquette <mturquette@baylibre.com>
      Cc: Stephen Boyd <sboyd@kernel.org>
      Cc: linux-clk@vger.kernel.org
      Cc: linux-arm-kernel@lists.infradead.org
      Cc: linux-renesas-soc@vger.kernel.org
      Cc: linux-omap@vger.kernel.org
      Signed-off-by: NRob Herring <robh@kernel.org>
      Signed-off-by: NStephen Boyd <sboyd@kernel.org>
      e665f029
  3. 26 7月, 2018 1 次提交
    • R
      clk: clk-fixed-factor: Clear OF_POPULATED flag in case of failure · f6dab423
      Rajan Vaja 提交于
      Fixed factor clock has two initializations at of_clk_init() time
      and during platform driver probe. Before of_clk_init() call,
      node is marked as populated and so its probe never gets called.
      
      During of_clk_init() fixed factor clock registration may fail if
      any of its parent clock is not registered. In this case, it doesn't
      get chance to retry registration from probe. Clear OF_POPULATED
      flag if fixed factor clock registration fails so that clock
      registration is attempted again from probe.
      Signed-off-by: NRajan Vaja <rajan.vaja@xilinx.com>
      Signed-off-by: NStephen Boyd <sboyd@kernel.org>
      f6dab423
  4. 16 8月, 2016 1 次提交
  5. 13 8月, 2016 1 次提交
  6. 02 7月, 2016 1 次提交
  7. 20 4月, 2016 1 次提交
  8. 30 1月, 2016 2 次提交
  9. 25 8月, 2015 2 次提交
  10. 11 6月, 2015 1 次提交
  11. 15 5月, 2015 1 次提交
  12. 14 10月, 2013 1 次提交
  13. 17 8月, 2013 1 次提交
  14. 13 4月, 2013 1 次提交
  15. 12 1月, 2013 1 次提交
  16. 12 7月, 2012 1 次提交
    • R
      clk: Add CLK_IS_BASIC flag to identify basic clocks · f7d8caad
      Rajendra Nayak 提交于
      Most platforms end up using a mix of basic clock types and
      some which use clk_hw_foo struct for filling in custom platform
      information when the clocks don't fit into basic types supported.
      
      In platform code, its useful to know if a clock is using a basic
      type or clk_hw_foo, which helps platforms know if they can
      safely use to_clk_hw_foo to derive the clk_hw_foo pointer from
      clk_hw.
      
      Mark all basic clocks with a CLK_IS_BASIC flag.
      Signed-off-by: NRajendra Nayak <rnayak@ti.com>
      Signed-off-by: NMike Turquette <mturquette@linaro.org>
      f7d8caad
  17. 09 5月, 2012 1 次提交