Skip to content

Commit 9b1b23f

Browse files
mmindbebarino
authored andcommitted
clk: rockchip: add "," to mux_pll_src_apll_dpll_gpll_usb480m_p on rk3036
The mux_pll_src_apll_dpll_gpll_usb480m_p parent list was missing a "," between the 3rd and 4th parent names, making them fall together and thus lookups fail. Fix that. Fixes: 5190c08 ("clk: rockchip: add clock controller for rk3036") Signed-off-by: Heiko Stuebner <[email protected]> Signed-off-by: Stephen Boyd <[email protected]>
1 parent 253160a commit 9b1b23f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/clk/rockchip/clk-rk3036.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ PNAME(mux_ddrphy_p) = { "dpll_ddr", "gpll_ddr" };
127127
PNAME(mux_pll_src_3plls_p) = { "apll", "dpll", "gpll" };
128128
PNAME(mux_timer_p) = { "xin24m", "pclk_peri_src" };
129129

130-
PNAME(mux_pll_src_apll_dpll_gpll_usb480m_p) = { "apll", "dpll", "gpll" "usb480m" };
130+
PNAME(mux_pll_src_apll_dpll_gpll_usb480m_p) = { "apll", "dpll", "gpll", "usb480m" };
131131

132132
PNAME(mux_mmc_src_p) = { "apll", "dpll", "gpll", "xin24m" };
133133
PNAME(mux_i2s_pre_p) = { "i2s_src", "i2s_frac", "ext_i2s", "xin12m" };

0 commit comments

Comments
 (0)