linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] regmap-irq: Fix bug in regmap_irq_get_irq_reg_linear()
@ 2022-07-04 11:28 Aidan MacDonald
  2022-07-06 10:17 ` Mark Brown
  0 siblings, 1 reply; 2+ messages in thread
From: Aidan MacDonald @ 2022-07-04 11:28 UTC (permalink / raw)
  To: broonie
  Cc: andy.shevchenko, m.szyprowski, gregkh, rafael, linux-kernel,
	linux-samsung-soc

irq_reg_stride in struct regmap_irq_chip is often 0, but that
actually means to use the default stride of 1. The effective
stride is stored in struct regmap_irq_chip_data->irq_reg_stride
and will get the corrected default value.

The default ->get_irq_reg() callback was using the stride from
the chip definition, which is wrong; fix it to use the effective
stride from the chip data instead.

Link: https://lore.kernel.org/lkml/acaaf77f-3282-8544-dd3c-7915fc1a6a4f@samsung.com/
Signed-off-by: Aidan MacDonald <aidanmacdonald.0x0@gmail.com>
---
 drivers/base/regmap/regmap-irq.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/base/regmap/regmap-irq.c b/drivers/base/regmap/regmap-irq.c
index a691553a0d6f..4ef9488d05cd 100644
--- a/drivers/base/regmap/regmap-irq.c
+++ b/drivers/base/regmap/regmap-irq.c
@@ -636,7 +636,7 @@ unsigned int regmap_irq_get_irq_reg_linear(struct regmap_irq_chip_data *data,
 		return base + subreg->offset[0];
 	}
 
-	return base + index * map->reg_stride * chip->irq_reg_stride;
+	return base + index * map->reg_stride * data->irq_reg_stride;
 }
 EXPORT_SYMBOL_GPL(regmap_irq_get_irq_reg_linear);
 
-- 
2.35.1


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

* Re: [PATCH] regmap-irq: Fix bug in regmap_irq_get_irq_reg_linear()
  2022-07-04 11:28 [PATCH] regmap-irq: Fix bug in regmap_irq_get_irq_reg_linear() Aidan MacDonald
@ 2022-07-06 10:17 ` Mark Brown
  0 siblings, 0 replies; 2+ messages in thread
From: Mark Brown @ 2022-07-06 10:17 UTC (permalink / raw)
  To: aidanmacdonald.0x0
  Cc: rafael, m.szyprowski, linux-samsung-soc, andy.shevchenko, gregkh,
	linux-kernel

On Mon, 4 Jul 2022 12:28:47 +0100, Aidan MacDonald wrote:
> irq_reg_stride in struct regmap_irq_chip is often 0, but that
> actually means to use the default stride of 1. The effective
> stride is stored in struct regmap_irq_chip_data->irq_reg_stride
> and will get the corrected default value.
> 
> The default ->get_irq_reg() callback was using the stride from
> the chip definition, which is wrong; fix it to use the effective
> stride from the chip data instead.
> 
> [...]

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git for-next

Thanks!

[1/1] regmap-irq: Fix bug in regmap_irq_get_irq_reg_linear()
      commit: 773d09b4c3acafd35f8b6e90848a39cedc03c52b

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

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

end of thread, other threads:[~2022-07-06 10:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-04 11:28 [PATCH] regmap-irq: Fix bug in regmap_irq_get_irq_reg_linear() Aidan MacDonald
2022-07-06 10:17 ` Mark Brown

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).