ipq: more v4.9 fixes
[openwrt/staging/blogic.git] / target / linux / ipq806x / patches-4.9 / 0030-clk-Disable-i2c-device-on-gsbi4.patch
1 From 0c974b87829e007dc4fae94e20d488204e20e662 Mon Sep 17 00:00:00 2001
2 From: John Crispin <john@phrozen.org>
3 Date: Thu, 9 Mar 2017 08:16:10 +0100
4 Subject: [PATCH 30/69] clk: Disable i2c device on gsbi4
5
6 This patch was not annotated and comes from the v4.4 tree.
7
8 Signed-off-by: John Crispin <john@phrozen.org>
9 ---
10 drivers/clk/qcom/gcc-ipq806x.c | 5 +++--
11 1 file changed, 3 insertions(+), 2 deletions(-)
12
13 diff --git a/drivers/clk/qcom/gcc-ipq806x.c b/drivers/clk/qcom/gcc-ipq806x.c
14 index 28eb200d0f1e..af1feb3a2c37 100644
15 --- a/drivers/clk/qcom/gcc-ipq806x.c
16 +++ b/drivers/clk/qcom/gcc-ipq806x.c
17 @@ -294,7 +294,7 @@ static struct clk_rcg gsbi1_uart_src = {
18 .parent_names = gcc_pxo_pll8,
19 .num_parents = 2,
20 .ops = &clk_rcg_ops,
21 - .flags = CLK_SET_PARENT_GATE,
22 + .flags = CLK_SET_PARENT_GATE | CLK_IGNORE_UNUSED,
23 },
24 },
25 };
26 @@ -312,7 +312,7 @@ static struct clk_branch gsbi1_uart_clk = {
27 },
28 .num_parents = 1,
29 .ops = &clk_branch_ops,
30 - .flags = CLK_SET_RATE_PARENT,
31 + .flags = CLK_SET_RATE_PARENT | CLK_IGNORE_UNUSED,
32 },
33 },
34 };
35 @@ -890,6 +890,7 @@ static struct clk_branch gsbi1_h_clk = {
36 .hw.init = &(struct clk_init_data){
37 .name = "gsbi1_h_clk",
38 .ops = &clk_branch_ops,
39 ++ .flags = CLK_IGNORE_UNUSED,
40 },
41 },
42 };
43 --
44 2.11.0
45