mirror of
https://github.com/Fishwaldo/build.git
synced 2025-03-29 02:01:21 +00:00
47 lines
1.3 KiB
Diff
47 lines
1.3 KiB
Diff
From e3d1a6396f339506d2dd84a276dc8df37da5dcd5 Mon Sep 17 00:00:00 2001
|
|
From: Jerome Brunet <jbrunet@baylibre.com>
|
|
Date: Wed, 18 Jan 2017 12:19:22 +0100
|
|
Subject: [PATCH 66/93] clk: meson: gxbb: mpll: use rw operation
|
|
|
|
Use read/write operation for the mpll clocks instead of the
|
|
read-only ones.
|
|
|
|
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
|
|
---
|
|
drivers/clk/meson/gxbb.c | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/drivers/clk/meson/gxbb.c b/drivers/clk/meson/gxbb.c
|
|
index 2f50a57..1f31933 100644
|
|
--- a/drivers/clk/meson/gxbb.c
|
|
+++ b/drivers/clk/meson/gxbb.c
|
|
@@ -476,7 +476,7 @@
|
|
.lock = &clk_lock,
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "mpll0",
|
|
- .ops = &meson_clk_mpll_ro_ops,
|
|
+ .ops = &meson_clk_mpll_ops,
|
|
.parent_names = (const char *[]){ "fixed_pll" },
|
|
.num_parents = 1,
|
|
},
|
|
@@ -506,7 +506,7 @@
|
|
.lock = &clk_lock,
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "mpll1",
|
|
- .ops = &meson_clk_mpll_ro_ops,
|
|
+ .ops = &meson_clk_mpll_ops,
|
|
.parent_names = (const char *[]){ "fixed_pll" },
|
|
.num_parents = 1,
|
|
},
|
|
@@ -536,7 +536,7 @@
|
|
.lock = &clk_lock,
|
|
.hw.init = &(struct clk_init_data){
|
|
.name = "mpll2",
|
|
- .ops = &meson_clk_mpll_ro_ops,
|
|
+ .ops = &meson_clk_mpll_ops,
|
|
.parent_names = (const char *[]){ "fixed_pll" },
|
|
.num_parents = 1,
|
|
},
|
|
--
|
|
1.9.1
|
|
|