0060-clk-dont-disable-unused-clocks.patch 703 B

1234567891011121314151617181920212223242526
  1. From e31a6402c10f50bf45fd073fbfd622f16bfca031 Mon Sep 17 00:00:00 2001
  2. From: John Crispin <[email protected]>
  3. Date: Thu, 7 Apr 2016 07:18:35 +0200
  4. Subject: [PATCH 60/90] clk: dont disable unused clocks
  5. Signed-off-by: John Crispin <[email protected]>
  6. ---
  7. drivers/clk/clk.c | 2 +-
  8. 1 file changed, 1 insertion(+), 1 deletion(-)
  9. diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
  10. index f13c3f4..5e9ddae 100644
  11. --- a/drivers/clk/clk.c
  12. +++ b/drivers/clk/clk.c
  13. @@ -233,7 +233,7 @@ unlock_out:
  14. clk_enable_unlock(flags);
  15. }
  16. -static bool clk_ignore_unused;
  17. +static bool clk_ignore_unused = true;
  18. static int __init clk_ignore_unused_setup(char *__unused)
  19. {
  20. clk_ignore_unused = true;
  21. --
  22. 1.7.10.4