clk: rockchip: pll: Fix compile error when !DEBUG_FS

Change-Id: I49be8f1772e28ab7f3cc343b0a81f258d739fdfb
Signed-off-by: Tao Huang <huangtao@rock-chips.com>
This commit is contained in:
Tao Huang
2018-05-24 19:37:29 +08:00
parent 49b5045634
commit 76a299b90c

View File

@@ -92,8 +92,10 @@ static int rockchip_rk3366_pll_set_params(struct rockchip_clk_pll *pll,
#define MAX_FOUTVCO_FREQ (2000 * MHZ)
static struct rockchip_pll_rate_table auto_table;
#ifdef CONFIG_DEBUG_FS
static HLIST_HEAD(clk_boost_list);
static DEFINE_MUTEX(clk_boost_lock);
#endif
int rockchip_pll_clk_adaptive_scaling(struct clk *clk, int sel)
{
@@ -1510,11 +1512,13 @@ struct clk *rockchip_clk_register_pll(struct rockchip_clk_provider *ctx,
goto err_pll;
}
#ifdef CONFIG_DEBUG_FS
if (boost_enabled && !IS_ERR(ctx->boost)) {
mutex_lock(&clk_boost_lock);
hlist_add_head(&pll->debug_node, &clk_boost_list);
mutex_unlock(&clk_boost_lock);
}
#endif
return mux_clk;