linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] clk: qcom: fix QCS404 TuringCC regmap
@ 2019-09-09  8:54 Jorge Ramirez-Ortiz
  2019-09-09 16:05 ` Stephen Boyd
  0 siblings, 1 reply; 2+ messages in thread
From: Jorge Ramirez-Ortiz @ 2019-09-09  8:54 UTC (permalink / raw)
  To: jorge.ramirez-ortiz, agross, mturquette, sboyd, bjorn.andersson
  Cc: linux-arm-msm, linux-clk, linux-kernel

The max register is 0x23004 as per the manual (the current
max_register that this commit is fixing is actually out of bounds).

Fixes: 892df0191b29 ("clk: qcom: Add QCS404 TuringCC")
Signed-off-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
---

 v2: add Fixes tag
 
 drivers/clk/qcom/turingcc-qcs404.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/qcom/turingcc-qcs404.c b/drivers/clk/qcom/turingcc-qcs404.c
index aa859e6ec9bd..4cfbbf5bf4d9 100644
--- a/drivers/clk/qcom/turingcc-qcs404.c
+++ b/drivers/clk/qcom/turingcc-qcs404.c
@@ -96,7 +96,7 @@ static const struct regmap_config turingcc_regmap_config = {
 	.reg_bits	= 32,
 	.reg_stride	= 4,
 	.val_bits	= 32,
-	.max_register	= 0x30000,
+	.max_register	= 0x23004,
 	.fast_io	= true,
 };
 
-- 
2.23.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v2] clk: qcom: fix QCS404 TuringCC regmap
  2019-09-09  8:54 [PATCH v2] clk: qcom: fix QCS404 TuringCC regmap Jorge Ramirez-Ortiz
@ 2019-09-09 16:05 ` Stephen Boyd
  0 siblings, 0 replies; 2+ messages in thread
From: Stephen Boyd @ 2019-09-09 16:05 UTC (permalink / raw)
  To: agross, bjorn.andersson, jorge.ramirez-ortiz, mturquette
  Cc: linux-arm-msm, linux-clk, linux-kernel

Quoting Jorge Ramirez-Ortiz (2019-09-09 01:54:30)
> The max register is 0x23004 as per the manual (the current
> max_register that this commit is fixing is actually out of bounds).
> 
> Fixes: 892df0191b29 ("clk: qcom: Add QCS404 TuringCC")
> Signed-off-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
> ---

Applied to clk-next


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-09-09 16:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-09  8:54 [PATCH v2] clk: qcom: fix QCS404 TuringCC regmap Jorge Ramirez-Ortiz
2019-09-09 16:05 ` Stephen Boyd

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).