Message ID | 20220621034224.38995-3-samuel@sholland.org |
---|---|
State | Accepted |
Commit | 371a9fcac47539ee7b3e5180c85eb6931177d7ab |
Headers | show |
Series | AXP221/AXP223/AXP809 GPIO support | expand |
On Tue, Jun 21, 2022 at 11:42 AM Samuel Holland <samuel@sholland.org> wrote: > > These PMICs all contain a compatible GPIO controller. > > Signed-off-by: Samuel Holland <samuel@sholland.org> Reviewed-by: Chen-Yu Tsai <wens@csie.org>
On Tue, Jun 21, 2022 at 5:42 AM Samuel Holland <samuel@sholland.org> wrote: > These PMICs all contain a compatible GPIO controller. > > Signed-off-by: Samuel Holland <samuel@sholland.org> If I can get Lee's ACK on this patch I suppose I can apply patches 1-3 to the pin control tree? Yours, Linus Walleij
On Wed, Jun 29, 2022 at 11:19 AM Lee Jones <lee.jones@linaro.org> wrote: > On Tue, 28 Jun 2022, Samuel Holland wrote: > > > On 6/28/22 9:03 AM, Linus Walleij wrote: > > > On Tue, Jun 21, 2022 at 5:42 AM Samuel Holland <samuel@sholland.org> wrote: > > > > > >> These PMICs all contain a compatible GPIO controller. > > >> > > >> Signed-off-by: Samuel Holland <samuel@sholland.org> > > > > > > If I can get Lee's ACK on this patch I suppose I can apply patches > > > 1-3 to the pin control tree? > > > > Looks like he already applied v1 of this patch (which was identical): > > > > https://lore.kernel.org/lkml/YrnZof9lwsIQCqu7@google.com/ > > Right, you don't need this one Linus. > > Please take the others. True! No compile-time dependence. I'll queue the others. Yours, Linus Walleij
diff --git a/drivers/mfd/axp20x.c b/drivers/mfd/axp20x.c index 8161a5dc68e8..88a212a8168c 100644 --- a/drivers/mfd/axp20x.c +++ b/drivers/mfd/axp20x.c @@ -619,6 +619,9 @@ static const struct mfd_cell axp20x_cells[] = { static const struct mfd_cell axp221_cells[] = { { + .name = "axp20x-gpio", + .of_compatible = "x-powers,axp221-gpio", + }, { .name = "axp221-pek", .num_resources = ARRAY_SIZE(axp22x_pek_resources), .resources = axp22x_pek_resources, @@ -645,6 +648,9 @@ static const struct mfd_cell axp221_cells[] = { static const struct mfd_cell axp223_cells[] = { { + .name = "axp20x-gpio", + .of_compatible = "x-powers,axp221-gpio", + }, { .name = "axp221-pek", .num_resources = ARRAY_SIZE(axp22x_pek_resources), .resources = axp22x_pek_resources, @@ -785,6 +791,9 @@ static const struct mfd_cell axp806_cells[] = { static const struct mfd_cell axp809_cells[] = { { + .name = "axp20x-gpio", + .of_compatible = "x-powers,axp221-gpio", + }, { .name = "axp221-pek", .num_resources = ARRAY_SIZE(axp809_pek_resources), .resources = axp809_pek_resources,
These PMICs all contain a compatible GPIO controller. Signed-off-by: Samuel Holland <samuel@sholland.org> --- (no changes since v1) drivers/mfd/axp20x.c | 9 +++++++++ 1 file changed, 9 insertions(+)