[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <VHU3uih5i4iLk4b8WSSqo4p8Dc5tMaDN@localhost>
Date: Tue, 05 Jul 2022 20:42:43 +0100
From: Aidan MacDonald <aidanmacdonald.0x0@...il.com>
To: Lee Jones <lee.jones@...aro.org>
Cc: linus.walleij@...aro.org, brgl@...ev.pl, robh+dt@...nel.org,
krzysztof.kozlowski+dt@...aro.org, wens@...e.org, jic23@...nel.org,
sre@...nel.org, lgirdwood@...il.com, broonie@...nel.org,
lars@...afoo.de, quic_gurus@...cinc.com,
sebastian.reichel@...labora.com, andy.shevchenko@...il.com,
michael@...le.cc, rdunlap@...radead.org,
linux-gpio@...r.kernel.org, devicetree@...r.kernel.org,
linux-kernel@...r.kernel.org, linux-iio@...r.kernel.org,
linux-pm@...r.kernel.org
Subject: Re: [PATCH v4 06/15] mfd: axp20x: Add support for AXP192
Lee Jones <lee.jones@...aro.org> writes:
> On Tue, 05 Jul 2022, Aidan MacDonald wrote:
>
>>
>> Lee Jones <lee.jones@...aro.org> writes:
>>
>> > On Wed, 29 Jun 2022, Aidan MacDonald wrote:
>> >
>> >> The AXP192 PMIC is similar to the AXP202/AXP209, but with different
>> >> regulators, additional GPIOs, and a different IRQ register layout.
>> >>
>> >> Acked-for-MFD-by: Lee Jones <lee.jones@...aro.org>
>> >> Signed-off-by: Aidan MacDonald <aidanmacdonald.0x0@...il.com>
>> >> ---
>> >> drivers/mfd/axp20x-i2c.c | 2 +
>> >> drivers/mfd/axp20x.c | 152 +++++++++++++++++++++++++++++++++++++
>> >> include/linux/mfd/axp20x.h | 84 ++++++++++++++++++++
>> >> 3 files changed, 238 insertions(+)
>> >> [...]
>> >> +static const struct regmap_irq_chip axp192_regmap_irq_chip = {
>> >> + .name = "axp192_irq_chip",
>> >> + .status_base = AXP192_IRQ1_STATE,
>> >> + .ack_base = AXP192_IRQ1_STATE,
>> >> + .unmask_base = AXP192_IRQ1_EN,
>> >> + .init_ack_masked = true,
>> >> + .irqs = axp192_regmap_irqs,
>> >> + .num_irqs = ARRAY_SIZE(axp192_regmap_irqs),
>> >> + .num_regs = 5,
>> >> + .get_irq_reg = axp192_get_irq_reg,
>> >
>> > Fix me:
>> >
>> > drivers/mfd/axp20x.c:634:35: error: initialization of 'unsigned int (*)(struct regmap_irq_chip_data *, unsigned int, int)' from incompatible pointer type 'int (*)(unsigned int, int)' [-Werror=incompatible-pointer-types]
>> > 634 | .get_irq_reg = axp192_get_irq_reg,
>> > | ^~~~~~~~~~~~~~~~~~
>> > drivers/mfd/axp20x.c:634:35: note: (near initialization for 'axp192_regmap_irq_chip.get_irq_reg')
>> >
>>
>> This doesn't need fixing. You are missing the prerequisite patches.
>>
>> -- snip --
>> Changes in v4:
>> * Drop regmap-irq patches and rebase on top of the regmap-irq
>> refactoring series[1], which implements the same functionality.
>>
>> [1]: https://lore.kernel.org/lkml/20220623211420.918875-1-aidanmacdonald.0x0@gmail.com/
>> -- snip --
>
>> Perhaps I wasn't clear enough that it was a dependency, sorry for
>> any confusion.
>
> Any idea why the regmap-irq patches weren't in -next?
Uh, sorry, I didn't pay attention and assumed this was the same error
the kernel test robot was reporting against mfd-next (missing field).
But the field does exist; this error is a type mismatch:
initialization of 'unsigned int (*)(struct regmap_irq_chip_data *,
unsigned int, int)'
from incompatible pointer type 'int (*)(unsigned int, int)'
So the regmap-irq patches were in -next, the problem is you were
using the old patch from v3.
FYI, I just sent a v5 which drops the GPIO driver, so please use
the patches from that version. Thanks.
Regards,
Aidan
Powered by blists - more mailing lists