Message ID | 20190313135503.3198-1-narmstrong@baylibre.com (mailing list archive) |
---|---|
State | Not Applicable |
Delegated to: | Neil Armstrong |
Headers | show |
Series | clk: meson-g12a: fix VPU clock parents | expand |
Quoting Neil Armstrong (2019-03-13 06:55:03) > First two VPU clock parents are wrong, fix it here. > > Fixes: 085a4ea93d54 ("clk: meson: g12a: add peripheral clock controller") > Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> Are you going to send this as a PR later? Or I can pick this directly to clk-fixes now?
On 18/03/2019 21:22, Stephen Boyd wrote: > Quoting Neil Armstrong (2019-03-13 06:55:03) >> First two VPU clock parents are wrong, fix it here. >> >> Fixes: 085a4ea93d54 ("clk: meson: g12a: add peripheral clock controller") >> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> > > Are you going to send this as a PR later? Or I can pick this directly to > clk-fixes now? > Two other fixes are coming in the next days, I will send them in a PR later. Neil
On Wed, 2019-03-13 at 14:55 +0100, Neil Armstrong wrote: > First two VPU clock parents are wrong, fix it here. > > Fixes: 085a4ea93d54 ("clk: meson: g12a: add peripheral clock controller") > Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> > --- > drivers/clk/meson/g12a.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Acked-by: Jerome Brunet <jbrunet@baylibre.com>
On 19/03/2019 10:11, Jerome Brunet wrote: > On Wed, 2019-03-13 at 14:55 +0100, Neil Armstrong wrote: >> First two VPU clock parents are wrong, fix it here. >> >> Fixes: 085a4ea93d54 ("clk: meson: g12a: add peripheral clock controller") >> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> >> --- >> drivers/clk/meson/g12a.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) > > Acked-by: Jerome Brunet <jbrunet@baylibre.com> > Will apply to fixes/drivers for 5.1
diff --git a/drivers/clk/meson/g12a.c b/drivers/clk/meson/g12a.c index 0e1ce8c03259..9b0151993bcc 100644 --- a/drivers/clk/meson/g12a.c +++ b/drivers/clk/meson/g12a.c @@ -960,7 +960,7 @@ static struct clk_regmap g12a_sd_emmc_c_clk0 = { /* VPU Clock */ static const char * const g12a_vpu_parent_names[] = { - "fclk_div4", "fclk_div3", "fclk_div5", "fclk_div7", + "fclk_div3", "fclk_div4", "fclk_div5", "fclk_div7", "mpll1", "vid_pll", "hifi_pll", "gp0_pll", };
First two VPU clock parents are wrong, fix it here. Fixes: 085a4ea93d54 ("clk: meson: g12a: add peripheral clock controller") Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> --- drivers/clk/meson/g12a.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)