[PATCH 1/3] clk: hisi: assign missing clk to table
Haojian Zhuang
haojian.zhuang at linaro.org
Mon Mar 10 21:40:00 EDT 2014
The fixed rate and fixed factor clock isn't registered to clk table.
Signed-off-by: Haojian Zhuang <haojian.zhuang at linaro.org>
---
drivers/clk/hisilicon/clk.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/clk/hisilicon/clk.c b/drivers/clk/hisilicon/clk.c
index a3a7152..18fc21f 100644
--- a/drivers/clk/hisilicon/clk.c
+++ b/drivers/clk/hisilicon/clk.c
@@ -68,6 +68,7 @@ void __init hisi_clk_register_fixed_rate(struct hisi_fixed_rate_clock *clks,
__func__, clks[i].name);
continue;
}
+ clk_table[clks[i].id] = clk;
}
}
@@ -87,6 +88,7 @@ void __init hisi_clk_register_fixed_factor(struct hisi_fixed_factor_clock *clks,
__func__, clks[i].name);
continue;
}
+ clk_table[clks[i].id] = clk;
}
}
--
1.8.3.2
More information about the linux-arm-kernel
mailing list