public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mfd: arizona: Fix typo in arizona_irq_map
@ 2015-09-11 15:07 Charles Keepax
  2015-09-20  4:18 ` Lee Jones
  0 siblings, 1 reply; 2+ messages in thread
From: Charles Keepax @ 2015-09-11 15:07 UTC (permalink / raw)
  To: lee.jones; +Cc: sameo, linux-kernel, patches

The type of the data for the main Arizona IRQ chip should be struct
arizona not struct regmap_irq_chip_data. The bug is harmless but should
probably be corrected anyway.

Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
---
 drivers/mfd/arizona-irq.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mfd/arizona-irq.c b/drivers/mfd/arizona-irq.c
index 2cac4f4..3d425e9 100644
--- a/drivers/mfd/arizona-irq.c
+++ b/drivers/mfd/arizona-irq.c
@@ -169,7 +169,7 @@ static struct irq_chip arizona_irq_chip = {
 static int arizona_irq_map(struct irq_domain *h, unsigned int virq,
 			      irq_hw_number_t hw)
 {
-	struct regmap_irq_chip_data *data = h->host_data;
+	struct arizona *data = h->host_data;
 
 	irq_set_chip_data(virq, data);
 	irq_set_chip_and_handler(virq, &arizona_irq_chip, handle_simple_irq);
-- 
1.7.2.5


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

* Re: [PATCH] mfd: arizona: Fix typo in arizona_irq_map
  2015-09-11 15:07 [PATCH] mfd: arizona: Fix typo in arizona_irq_map Charles Keepax
@ 2015-09-20  4:18 ` Lee Jones
  0 siblings, 0 replies; 2+ messages in thread
From: Lee Jones @ 2015-09-20  4:18 UTC (permalink / raw)
  To: Charles Keepax; +Cc: sameo, linux-kernel, patches

On Fri, 11 Sep 2015, Charles Keepax wrote:

> The type of the data for the main Arizona IRQ chip should be struct
> arizona not struct regmap_irq_chip_data. The bug is harmless but should
> probably be corrected anyway.
> 
> Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
> ---
>  drivers/mfd/arizona-irq.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

Applied, thanks.

> diff --git a/drivers/mfd/arizona-irq.c b/drivers/mfd/arizona-irq.c
> index 2cac4f4..3d425e9 100644
> --- a/drivers/mfd/arizona-irq.c
> +++ b/drivers/mfd/arizona-irq.c
> @@ -169,7 +169,7 @@ static struct irq_chip arizona_irq_chip = {
>  static int arizona_irq_map(struct irq_domain *h, unsigned int virq,
>  			      irq_hw_number_t hw)
>  {
> -	struct regmap_irq_chip_data *data = h->host_data;
> +	struct arizona *data = h->host_data;
>  
>  	irq_set_chip_data(virq, data);
>  	irq_set_chip_and_handler(virq, &arizona_irq_chip, handle_simple_irq);

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

end of thread, other threads:[~2015-09-20  4:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-11 15:07 [PATCH] mfd: arizona: Fix typo in arizona_irq_map Charles Keepax
2015-09-20  4:18 ` Lee Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox