From 60e52d57301c4b187c7cd5ad15ffe27444dd61ff Mon Sep 17 00:00:00 2001 From: Wyon Bi Date: Tue, 19 Sep 2017 14:30:39 +0800 Subject: [PATCH] clk: rockchip: rk3368: remove CLK_IGNORE_UNUSED flag from DPHY related clocks This flag was in place to prevent important clocks from getting gated while they had no users. Now that the driver supports clocks properly, we can drop this. Change-Id: I91d0a5c000ed7215bf55dbc871e175ac79a1cd2a Signed-off-by: Wyon Bi Signed-off-by: Elaine Zhang --- drivers/clk/rockchip/clk-rk3368.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/clk/rockchip/clk-rk3368.c b/drivers/clk/rockchip/clk-rk3368.c index c7e3de8dd2d8..f011f69af1fe 100644 --- a/drivers/clk/rockchip/clk-rk3368.c +++ b/drivers/clk/rockchip/clk-rk3368.c @@ -852,8 +852,8 @@ static struct rockchip_clk_branch rk3368_clk_branches[] __initdata = { * pclk_vio gates * pclk_vio comes from the exactly same source as hclk_vio */ - GATE(PCLK_DPHYRX, "pclk_dphyrx", "hclk_vio", CLK_IGNORE_UNUSED, RK3368_CLKGATE_CON(22), 11, GFLAGS), - GATE(PCLK_DPHYTX0, "pclk_dphytx", "hclk_vio", CLK_IGNORE_UNUSED, RK3368_CLKGATE_CON(22), 10, GFLAGS), + GATE(PCLK_DPHYRX, "pclk_dphyrx", "hclk_vio", 0, RK3368_CLKGATE_CON(22), 11, GFLAGS), + GATE(PCLK_DPHYTX0, "pclk_dphytx", "hclk_vio", 0, RK3368_CLKGATE_CON(22), 10, GFLAGS), /* pclk_pd_pmu gates */ GATE(PCLK_PMUGRF, "pclk_pmugrf", "pclk_pd_pmu", CLK_IGNORE_UNUSED, RK3368_CLKGATE_CON(23), 5, GFLAGS),