diff options
author | Jeffrey Hugo <jhugo@codeaurora.org> | 2019-01-04 19:49:46 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2019-01-09 21:57:26 +0300 |
commit | 0c8ff62504e3a667387e87889a259632c3199a86 (patch) | |
tree | d9b994d785de30b299850a4db7f58ed11683d196 /drivers/clk/qcom | |
parent | 26fe27d9201bb0a5568325f053326671dad4412c (diff) | |
download | linux-0c8ff62504e3a667387e87889a259632c3199a86.tar.xz |
clk: qcom: Add missing freq for usb30_master_clk on 8998
The usb30_master_clk supports a 60Mhz frequency, but that is missing from
the table of supported frequencies. Add it.
Fixes: b5f5f525c547 (clk: qcom: Add MSM8998 Global Clock Control (GCC) driver)
Signed-off-by: Jeffrey Hugo <jhugo@codeaurora.org>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/qcom')
-rw-r--r-- | drivers/clk/qcom/gcc-msm8998.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/qcom/gcc-msm8998.c b/drivers/clk/qcom/gcc-msm8998.c index b618bbfa9a7f..96cf00c425a8 100644 --- a/drivers/clk/qcom/gcc-msm8998.c +++ b/drivers/clk/qcom/gcc-msm8998.c @@ -1112,6 +1112,7 @@ static struct clk_rcg2 ufs_axi_clk_src = { static const struct freq_tbl ftbl_usb30_master_clk_src[] = { F(19200000, P_XO, 1, 0, 0), + F(60000000, P_GPLL0_OUT_MAIN, 10, 0, 0), F(120000000, P_GPLL0_OUT_MAIN, 5, 0, 0), F(150000000, P_GPLL0_OUT_MAIN, 4, 0, 0), { } |