diff options
author | Charles Keepax <ckeepax@opensource.wolfsonmicro.com> | 2015-09-11 18:07:56 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2015-10-26 17:49:05 +0300 |
commit | 0a464dfdf8dec7410bd6bc8af9086098ee712a04 (patch) | |
tree | f887974ba23b9e86ad72a37c47e37840ed50bda6 /drivers/mfd | |
parent | 16dfd10375011e0999ce9d96df2df08380edf001 (diff) | |
download | linux-0a464dfdf8dec7410bd6bc8af9086098ee712a04.tar.xz |
mfd: arizona: Fix typo in arizona_irq_map
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>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | 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 2cac4f463f1e..3d425e93ce84 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); |