All of lore.kernel.org
 help / color / mirror / Atom feed
From: Gregory CLEMENT <gregory.clement@bootlin.com>
To: Linus Walleij <linus.walleij@linaro.org>,
	Andrew Lunn <andrew@lunn.ch>,
	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Cc: linux-arm-kernel@lists.infradead.org, linux-gpio@vger.kernel.org,
	Linus Walleij <linus.walleij@linaro.org>
Subject: Re: [PATCH 0/5] Decrease the usage of global GPIO numbers for LEDs
Date: Sun, 05 May 2024 18:19:25 +0200	[thread overview]
Message-ID: <87v83snsdu.fsf@BLaptop.bootlin.com> (raw)
In-Reply-To: <20240423-gpio-leds-v1-0-799c2f6bc61c@linaro.org>

Linus Walleij <linus.walleij@linaro.org> writes:

> Fix up the orion boards to use GPIO descriptor tables
> instead of hardcoded GPIO numbers in all board files.
>
> git grep 'struct gpio_led_platform_data' gives a list of
> suspects. We wade through them and root out the use of
> global GPIO numbers in favor of descriptors.
>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

All patches applied on mvebu/arm

Thanks,

Gregory
> ---
> Linus Walleij (5):
>       ARM: orion5x: Convert D2Net board to GPIO descriptors for LEDs
>       ARM: orion5x: Convert DNS323 board to GPIO descriptors for LEDs
>       ARM: orion5x: Convert MV2120 board to GPIO descriptors for LEDs
>       ARM: orion5x: Convert Net2big board to GPIO descriptors for LEDs
>       ARM: orion5x: Convert TS409 board to GPIO descriptors for LEDs
>
>  arch/arm/mach-orion5x/board-d2net.c   | 16 +++++++--
>  arch/arm/mach-orion5x/dns323-setup.c  | 63 ++++++++++++++++++++++++++---------
>  arch/arm/mach-orion5x/mv2120-setup.c  | 29 +++++++++++-----
>  arch/arm/mach-orion5x/net2big-setup.c | 21 +++++++++---
>  arch/arm/mach-orion5x/ts409-setup.c   | 25 +++++++++-----
>  5 files changed, 116 insertions(+), 38 deletions(-)
> ---
> base-commit: 4cece764965020c22cff7665b18a012006359095
> change-id: 20240423-gpio-leds-9d584c9a8659
>
> Best regards,
> -- 
> Linus Walleij <linus.walleij@linaro.org>

WARNING: multiple messages have this Message-ID (diff)
From: Gregory CLEMENT <gregory.clement@bootlin.com>
To: Linus Walleij <linus.walleij@linaro.org>,
	Andrew Lunn <andrew@lunn.ch>,
	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Cc: linux-arm-kernel@lists.infradead.org, linux-gpio@vger.kernel.org,
	Linus Walleij <linus.walleij@linaro.org>
Subject: Re: [PATCH 0/5] Decrease the usage of global GPIO numbers for LEDs
Date: Sun, 05 May 2024 18:19:25 +0200	[thread overview]
Message-ID: <87v83snsdu.fsf@BLaptop.bootlin.com> (raw)
In-Reply-To: <20240423-gpio-leds-v1-0-799c2f6bc61c@linaro.org>

Linus Walleij <linus.walleij@linaro.org> writes:

> Fix up the orion boards to use GPIO descriptor tables
> instead of hardcoded GPIO numbers in all board files.
>
> git grep 'struct gpio_led_platform_data' gives a list of
> suspects. We wade through them and root out the use of
> global GPIO numbers in favor of descriptors.
>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

All patches applied on mvebu/arm

Thanks,

Gregory
> ---
> Linus Walleij (5):
>       ARM: orion5x: Convert D2Net board to GPIO descriptors for LEDs
>       ARM: orion5x: Convert DNS323 board to GPIO descriptors for LEDs
>       ARM: orion5x: Convert MV2120 board to GPIO descriptors for LEDs
>       ARM: orion5x: Convert Net2big board to GPIO descriptors for LEDs
>       ARM: orion5x: Convert TS409 board to GPIO descriptors for LEDs
>
>  arch/arm/mach-orion5x/board-d2net.c   | 16 +++++++--
>  arch/arm/mach-orion5x/dns323-setup.c  | 63 ++++++++++++++++++++++++++---------
>  arch/arm/mach-orion5x/mv2120-setup.c  | 29 +++++++++++-----
>  arch/arm/mach-orion5x/net2big-setup.c | 21 +++++++++---
>  arch/arm/mach-orion5x/ts409-setup.c   | 25 +++++++++-----
>  5 files changed, 116 insertions(+), 38 deletions(-)
> ---
> base-commit: 4cece764965020c22cff7665b18a012006359095
> change-id: 20240423-gpio-leds-9d584c9a8659
>
> Best regards,
> -- 
> Linus Walleij <linus.walleij@linaro.org>

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2024-05-05 16:19 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-23 13:53 [PATCH 0/5] Decrease the usage of global GPIO numbers for LEDs Linus Walleij
2024-04-23 13:53 ` Linus Walleij
2024-04-23 13:53 ` [PATCH 1/5] ARM: orion5x: Convert D2Net board to GPIO descriptors " Linus Walleij
2024-04-23 13:53   ` Linus Walleij
2024-04-23 13:53 ` [PATCH 2/5] ARM: orion5x: Convert DNS323 " Linus Walleij
2024-04-23 13:53   ` Linus Walleij
2024-04-23 13:53 ` [PATCH 3/5] ARM: orion5x: Convert MV2120 " Linus Walleij
2024-04-23 13:53   ` Linus Walleij
2024-04-23 13:54 ` [PATCH 4/5] ARM: orion5x: Convert Net2big " Linus Walleij
2024-04-23 13:54   ` Linus Walleij
2024-04-23 13:54 ` [PATCH 5/5] ARM: orion5x: Convert TS409 " Linus Walleij
2024-04-23 13:54   ` Linus Walleij
2024-05-05 16:19 ` Gregory CLEMENT [this message]
2024-05-05 16:19   ` [PATCH 0/5] Decrease the usage of global GPIO numbers " Gregory CLEMENT

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87v83snsdu.fsf@BLaptop.bootlin.com \
    --to=gregory.clement@bootlin.com \
    --cc=andrew@lunn.ch \
    --cc=linus.walleij@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=sebastian.hesselbarth@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.