1. 29 7月, 2019 2 次提交
  2. 20 5月, 2019 1 次提交
  3. 04 2月, 2019 1 次提交
  4. 03 2月, 2019 1 次提交
    • J
      clk: meson: rework and clean drivers dependencies · 889c2b7e
      Jerome Brunet 提交于
      Initially, the meson clock directory only hosted 2 controllers drivers,
      for meson8 and gxbb. At the time, both used the same set of clock drivers
      so managing the dependencies was not a big concern.
      
      Since this ancient time, entropy did its job, controllers with different
      requirement and specific clock drivers have been added. Unfortunately, we
      did not do a great job at managing the dependencies between the
      controllers and the different clock drivers. Some drivers, such as
      clk-phase or vid-pll-div, are compiled even if they are useless on the
      target (meson8). As we are adding new controllers, we need to be able to
      pick a driver w/o pulling the whole thing.
      
      The patch aims to clean things up by:
      * providing a dedicated CONFIG_ for each clock drivers
      * allowing clock drivers to be compiled as a modules, if possible
      * stating explicitly which drivers are required by each controller.
      Signed-off-by: NJerome Brunet <jbrunet@baylibre.com>
      Signed-off-by: NNeil Armstrong <narmstrong@baylibre.com>
      Link: https://lkml.kernel.org/r/20190201125841.26785-5-jbrunet@baylibre.com
      889c2b7e
  5. 18 1月, 2019 1 次提交
  6. 09 11月, 2018 1 次提交
  7. 26 9月, 2018 5 次提交
  8. 09 7月, 2018 3 次提交
  9. 21 5月, 2018 1 次提交
  10. 15 3月, 2018 1 次提交
    • S
      clk: meson: Drop unused local variable and add static · 5d1c04dd
      Stephen Boyd 提交于
      Fixes the following warnings:
      
      drivers/clk/meson/meson8b.c:512:19: warning: symbol 'meson8b_mpeg_clk_div' was not declared. Should it be static?
      drivers/clk/meson/meson8b.c:526:19: warning: symbol 'meson8b_clk81' was not declared. Should it be static?
      drivers/clk/meson/meson8b.c:540:19: warning: symbol 'meson8b_cpu_in_sel' was not declared. Should it be static?
      drivers/clk/meson/meson8b.c:591:19: warning: symbol 'meson8b_cpu_scale_div' was not declared. Should it be static?
      drivers/clk/meson/meson8b.c:608:19: warning: symbol 'meson8b_cpu_scale_out_sel' was not declared. Should it be static?
      drivers/clk/meson/meson8b.c:626:19: warning: symbol 'meson8b_cpu_clk' was not declared. Should it be static?
      drivers/clk/meson/gxbb.c:392:27: warning: symbol 'gxbb_gp0_init_regs' was not declared. Should it be static?
      drivers/clk/meson/gxbb.c:439:27: warning: symbol 'gxl_gp0_init_regs' was not declared. Should it be static?
      drivers/clk/meson/axg.c:195:27: warning: symbol 'axg_gp0_init_regs' was not declared. Should it be static?
      drivers/clk/meson/axg.c:248:27: warning: symbol 'axg_hifi_init_regs' was not declared. Should it be static?
      drivers/clk/meson/meson8b.c: In function 'meson8b_clkc_probe':
      drivers/clk/meson/meson8b.c:1052:14: warning: unused variable 'clk' [-Wunused-variable]
      Signed-off-by: NStephen Boyd <sboyd@kernel.org>
      5d1c04dd
  11. 13 3月, 2018 18 次提交
  12. 12 2月, 2018 4 次提交
  13. 11 1月, 2018 1 次提交