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