1. 30 10月, 2012 7 次提交
  2. 21 9月, 2012 1 次提交
  3. 20 9月, 2012 2 次提交
  4. 16 9月, 2012 1 次提交
  5. 11 9月, 2012 2 次提交
    • S
      clk: mxs: replace imx23 clk_register_clkdev with clock DT lookup · 53f9443d
      Shawn Guo 提交于
      It really becomes a maintenance issue that every time a device needs
      to look up (clk_get) a clock we have to patch kernel clock file to call
      clk_register_clkdev for that clock.
      
      Since clock DT support which is meant to resolve clock lookup in device
      tree is in place, the patch moves imx23 client devices' clock lookup
      over to device tree, so that any new lookup to be added at later time
      can just get done in DT instead of kernel.
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      53f9443d
    • S
      clk: mxs: replace imx28 clk_register_clkdev with clock DT lookup · b598b9f3
      Shawn Guo 提交于
      It really becomes a maintenance issue that every time a device needs
      to look up (clk_get) a clock we have to patch kernel clock file to call
      clk_register_clkdev for that clock.
      
      Since clock DT support which is meant to resolve clock lookup in device
      tree is in place, the patch moves imx28 client devices' clock lookup
      over to device tree, so that any new lookup to be added at later time
      can just get done in DT instead of kernel.
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      b598b9f3
  6. 08 9月, 2012 1 次提交
  7. 07 9月, 2012 8 次提交
  8. 05 9月, 2012 1 次提交
  9. 03 9月, 2012 1 次提交
  10. 01 9月, 2012 1 次提交
  11. 29 8月, 2012 4 次提交
  12. 25 8月, 2012 2 次提交
  13. 18 8月, 2012 1 次提交
  14. 31 7月, 2012 2 次提交
    • F
      clk: validate pointer in __clk_disable() · e47c6a34
      Fengguang Wu 提交于
      clk_get() returns -ENOENT on error and some careless caller might
      dereference it without error checking:
      
      In mxc_rnga_remove():
      
              struct clk *clk = clk_get(&pdev->dev, "rng");
      
      	// ...
      
              clk_disable(clk);
      
      Since it's insane to audit the lots of existing and future clk users,
      let's add a check in the callee to avoid kernel panic and warn about
      any buggy user.
      
      Cc: Russell King <rmk@arm.linux.org.uk>
      Cc: Paul Gortmaker <paul.gortmaker@windriver.com>
      Cc: Viresh Kumar <viresh.kumar@st.com>
      Cc: viresh kumar <viresh.linux@gmail.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      e47c6a34
    • V
      clk: remove redundant depends on from drivers/Kconfig · 01da40bf
      Viresh Kumar 提交于
      menu "Common Clock Framework" has "depends on COMMON_CLK" and so configs
      defined within menu don't require these "depends on COMMON_CLK again".
      Signed-off-by: NViresh Kumar <viresh.kumar@st.com>
      Cc: Wolfram Sang <w.sang@pengutronix.de>
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Cc: Jeff Garzik <jgarzik@redhat.com>
      Cc: Andrew Lunn <andrew@lunn.ch>
      Cc: Bhupesh Sharma <bhupesh.sharma@st.com>
      Cc: Giuseppe Cavallaro <peppe.cavallaro@st.com>
      Cc: Russell King <rmk@arm.linux.org.uk>
      Cc: Mike Turquette <mturquette@linaro.org>
      Cc: Sergei Shtylyov <sshtylyov@ru.mvista.com>
      Cc: viresh kumar <viresh.linux@gmail.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      01da40bf
  15. 20 7月, 2012 2 次提交
  16. 19 7月, 2012 1 次提交
  17. 18 7月, 2012 3 次提交