Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

clk: hisi: assign missing clk to table

The fixed rate and fixed factor clock isn't registered to clk table.

Signed-off-by: Haojian Zhuang <haojian.zhuang@linaro.org>

authored by

Haojian Zhuang and committed by
Haojian Zhuang
16d1c899 38dbfb59

+2
+2
drivers/clk/hisilicon/clk.c
··· 68 68 __func__, clks[i].name); 69 69 continue; 70 70 } 71 + clk_table[clks[i].id] = clk; 71 72 } 72 73 } 73 74 ··· 88 87 __func__, clks[i].name); 89 88 continue; 90 89 } 90 + clk_table[clks[i].id] = clk; 91 91 } 92 92 } 93 93