[PATCH 1/1] clk: mvebu: Fix ratio register offset on A375 SoC
Ezequiel Garcia
ezequiel.garcia at free-electrons.com
Wed Mar 12 11:41:41 EDT 2014
This commit fixes the ratio register offset which is 0x4,
as per the Armada 375 SoC specification.
Signed-off-by: Ezequiel Garcia <ezequiel.garcia at free-electrons.com>
---
drivers/clk/mvebu/clk-corediv.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/clk/mvebu/clk-corediv.c b/drivers/clk/mvebu/clk-corediv.c
index 4da6076..4af33ba 100644
--- a/drivers/clk/mvebu/clk-corediv.c
+++ b/drivers/clk/mvebu/clk-corediv.c
@@ -213,7 +213,7 @@ static const struct clk_corediv_soc_desc armada375_corediv_soc = {
.set_rate = clk_corediv_set_rate,
},
.ratio_reload = BIT(8),
- .ratio_offset = 0x8,
+ .ratio_offset = 0x4,
};
static void __init
--
1.9.0
More information about the linux-arm-kernel
mailing list