aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Jourdan <[email protected]>2019-03-19 09:26:11 +0100
committerNeil Armstrong <[email protected]>2019-03-19 17:38:00 +0100
commitf53b9f146fa1d5c5bb6dc34e27176434b26cd0a7 (patch)
tree712b1eefb06eefbc8b556416e012a105dc4e0bfe
parent9b70c697e87286ade406e6a02091757307dd4b7c (diff)
clk: meson: g12a: fix VPU clock muxes mask
There are 8 parents, use 0x7 Fixes: 085a4ea93d54 ("clk: meson: g12a: add peripheral clock controller") Signed-off-by: Maxime Jourdan <[email protected]> Acked-by: Neil Armstrong <[email protected]> Signed-off-by: Neil Armstrong <[email protected]> Link: https://lkml.kernel.org/r/[email protected]
-rw-r--r--drivers/clk/meson/g12a.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/meson/g12a.c b/drivers/clk/meson/g12a.c
index 0e1ce8c03259..683769f6e90d 100644
--- a/drivers/clk/meson/g12a.c
+++ b/drivers/clk/meson/g12a.c
@@ -967,7 +967,7 @@ static const char * const g12a_vpu_parent_names[] = {
static struct clk_regmap g12a_vpu_0_sel = {
.data = &(struct clk_regmap_mux_data){
.offset = HHI_VPU_CLK_CNTL,
- .mask = 0x3,
+ .mask = 0x7,
.shift = 9,
},
.hw.init = &(struct clk_init_data){
@@ -1011,7 +1011,7 @@ static struct clk_regmap g12a_vpu_0 = {
static struct clk_regmap g12a_vpu_1_sel = {
.data = &(struct clk_regmap_mux_data){
.offset = HHI_VPU_CLK_CNTL,
- .mask = 0x3,
+ .mask = 0x7,
.shift = 25,
},
.hw.init = &(struct clk_init_data){