1. 01 6月, 2017 2 次提交
  2. 26 5月, 2017 1 次提交
  3. 18 5月, 2017 1 次提交
  4. 16 5月, 2017 1 次提交
  5. 14 5月, 2017 2 次提交
  6. 09 5月, 2017 1 次提交
  7. 02 5月, 2017 1 次提交
  8. 29 4月, 2017 2 次提交
    • A
      clk: ti: divider: try to fix ti_clk_register_divider · 3417f352
      Arnd Bergmann 提交于
      Commit 6c0afb50 ("clk: ti: convert to use proper register
      definition for all accesses") converted all register accesses in
      the TI clk driver to use a proper struct instead of a void
      pointer casted struct that fits into a u32. Unfortunately, it
      missed a conversion here in the didivder code, leading to a
      compiler warning like so:
      
      drivers/clk/ti/divider.c: In function 'ti_clk_register_divider':
      drivers/clk/ti/divider.c:460:8: error: 'reg' may be used uninitialized in this function [-Werror=maybe-uninitialized]
      
      Treating a 'u32' variable as a structure leads to a stack
      overflow here, and the register address we pass down is never
      initialized. Convert this part of the code as well so things
      work properly.
      
      Fixes: 6c0afb50 ("clk: ti: convert to use proper register definition for all accesses")
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      [sboyd@codeaurora.org: Fixed fixes tag, rewrote commit message,
      s/reg_setup/reg/]
      Signed-off-by: NStephen Boyd <sboyd@codeaurora.org>
      3417f352
    • A
      clk: sunxi-ng: always select CCU_GATE · 36c02d0b
      Arnd Bergmann 提交于
      When the base driver is enabled but all SoC specific drivers are turned
      off, we now get a build error after code was added to always refer to the
      clk gates:
      
      drivers/clk/built-in.o: In function `ccu_pll_notifier_cb':
      :(.text+0x154f8): undefined reference to `ccu_gate_helper_disable'
      :(.text+0x15504): undefined reference to `ccu_gate_helper_enable'
      
      This changes the Kconfig to always require the gate code to be built-in
      when CONFIG_SUNXI_CCU is set.
      
      Fixes: 02ae2bc6 ("clk: sunxi-ng: Add clk notifier to gate then ungate PLL clocks")
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Acked-by: NMaxime Ripard <maxime.ripard@free-electrons.com>
      Signed-off-by: NStephen Boyd <sboyd@codeaurora.org>
      36c02d0b
  9. 25 4月, 2017 3 次提交
  10. 22 4月, 2017 13 次提交
  11. 20 4月, 2017 13 次提交