From: Jacek Anaszewski <j.anaszewski@samsung.com>
To: Gregory CLEMENT <gregory.clement@free-electrons.com>
Cc: Simon Guinot <simon.guinot@sequanux.org>,
Bryan Wu <cooloney@gmail.com>, Richard Purdie <rpurdie@rpsys.net>,
Jason Cooper <jason@lakedaemon.net>, Andrew Lunn <andrew@lunn.ch>,
Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>,
Vincent Donnefort <vdonnefort@gmail.com>,
Yoann Sculo <yoann@printk.fr>,
Linus Walleij <linus.walleij@linaro.org>,
Alexandre Courbot <gnurou@gmail.com>,
Rob Herring <robh@kernel.org>,
linux-leds@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
devicetree@vger.kernel.org
Subject: Re: [PATCH v6 0/5] Add DT support for netxbig LEDs
Date: Thu, 15 Oct 2015 10:11:19 +0200 [thread overview]
Message-ID: <561F5FA7.2040000@samsung.com> (raw)
In-Reply-To: <87mvvk38kl.fsf@free-electrons.com>
Hi Gregory,
On 10/15/2015 09:16 AM, Gregory CLEMENT wrote:
> Hi Jacek,
>
> On ven., oct. 09 2015, Jacek Anaszewski <j.anaszewski@samsung.com> wrote:
>
>> On 09/26/2015 11:02 PM, Simon Guinot wrote:
>>> Hello,
>
> [..]
>>>
>>> Simon Guinot (5):
>>> leds: netxbig: add device tree binding
>>> ARM: Kirkwood: add LED DT entries for netxbig boards
>>> ARM: mvebu: remove static LED setup for netxbig boards
>>> leds: netxbig: convert to use the devm_ functions
>>> leds: netxbig: set led_classdev max_brightness
>>>
>>> .../devicetree/bindings/gpio/netxbig-gpio-ext.txt | 22 ++
>>> .../devicetree/bindings/leds/leds-netxbig.txt | 92 ++++++
>>> arch/arm/boot/dts/kirkwood-net5big.dts | 60 ++++
>>> arch/arm/boot/dts/kirkwood-netxbig.dtsi | 80 +++++
>>> arch/arm/mach-mvebu/Kconfig | 7 -
>>> arch/arm/mach-mvebu/Makefile | 1 -
>>> arch/arm/mach-mvebu/board.h | 21 --
>>> arch/arm/mach-mvebu/kirkwood.c | 4 -
>>> arch/arm/mach-mvebu/netxbig.c | 191 ------------
>>> drivers/leds/leds-netxbig.c | 336 ++++++++++++++++-----
>>> include/dt-bindings/leds/leds-netxbig.h | 18 ++
>>> .../linux/platform_data/leds-kirkwood-netxbig.h | 1 +
>>> 12 files changed, 531 insertions(+), 302 deletions(-)
>>> create mode 100644 Documentation/devicetree/bindings/gpio/netxbig-gpio-ext.txt
>>> create mode 100644 Documentation/devicetree/bindings/leds/leds-netxbig.txt
>>> delete mode 100644 arch/arm/mach-mvebu/board.h
>>> delete mode 100644 arch/arm/mach-mvebu/netxbig.c
>>> create mode 100644 include/dt-bindings/leds/leds-netxbig.h
>>>
>>
>> Since no comment regarding DT bindings has appeared for a long time,
>> I decided to merge the patch set without DT maintainer's ack, thanks.
>
> it is a good news that this series will be finally merged. However did
> you also take the patches "ARM: Kirkwood: add LED DT entries for netxbig
> boards" and "ARM: mvebu: remove static LED setup for netxbig boards" ?
Yes, I did:
https://git.kernel.org/cgit/linux/kernel/git/j.anaszewski/linux-leds.git/log/?h=for-next
They should appear in the next issue of linux-next.
--
Best Regards,
Jacek Anaszewski
WARNING: multiple messages have this Message-ID (diff)
From: j.anaszewski@samsung.com (Jacek Anaszewski)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v6 0/5] Add DT support for netxbig LEDs
Date: Thu, 15 Oct 2015 10:11:19 +0200 [thread overview]
Message-ID: <561F5FA7.2040000@samsung.com> (raw)
In-Reply-To: <87mvvk38kl.fsf@free-electrons.com>
Hi Gregory,
On 10/15/2015 09:16 AM, Gregory CLEMENT wrote:
> Hi Jacek,
>
> On ven., oct. 09 2015, Jacek Anaszewski <j.anaszewski@samsung.com> wrote:
>
>> On 09/26/2015 11:02 PM, Simon Guinot wrote:
>>> Hello,
>
> [..]
>>>
>>> Simon Guinot (5):
>>> leds: netxbig: add device tree binding
>>> ARM: Kirkwood: add LED DT entries for netxbig boards
>>> ARM: mvebu: remove static LED setup for netxbig boards
>>> leds: netxbig: convert to use the devm_ functions
>>> leds: netxbig: set led_classdev max_brightness
>>>
>>> .../devicetree/bindings/gpio/netxbig-gpio-ext.txt | 22 ++
>>> .../devicetree/bindings/leds/leds-netxbig.txt | 92 ++++++
>>> arch/arm/boot/dts/kirkwood-net5big.dts | 60 ++++
>>> arch/arm/boot/dts/kirkwood-netxbig.dtsi | 80 +++++
>>> arch/arm/mach-mvebu/Kconfig | 7 -
>>> arch/arm/mach-mvebu/Makefile | 1 -
>>> arch/arm/mach-mvebu/board.h | 21 --
>>> arch/arm/mach-mvebu/kirkwood.c | 4 -
>>> arch/arm/mach-mvebu/netxbig.c | 191 ------------
>>> drivers/leds/leds-netxbig.c | 336 ++++++++++++++++-----
>>> include/dt-bindings/leds/leds-netxbig.h | 18 ++
>>> .../linux/platform_data/leds-kirkwood-netxbig.h | 1 +
>>> 12 files changed, 531 insertions(+), 302 deletions(-)
>>> create mode 100644 Documentation/devicetree/bindings/gpio/netxbig-gpio-ext.txt
>>> create mode 100644 Documentation/devicetree/bindings/leds/leds-netxbig.txt
>>> delete mode 100644 arch/arm/mach-mvebu/board.h
>>> delete mode 100644 arch/arm/mach-mvebu/netxbig.c
>>> create mode 100644 include/dt-bindings/leds/leds-netxbig.h
>>>
>>
>> Since no comment regarding DT bindings has appeared for a long time,
>> I decided to merge the patch set without DT maintainer's ack, thanks.
>
> it is a good news that this series will be finally merged. However did
> you also take the patches "ARM: Kirkwood: add LED DT entries for netxbig
> boards" and "ARM: mvebu: remove static LED setup for netxbig boards" ?
Yes, I did:
https://git.kernel.org/cgit/linux/kernel/git/j.anaszewski/linux-leds.git/log/?h=for-next
They should appear in the next issue of linux-next.
--
Best Regards,
Jacek Anaszewski
next prev parent reply other threads:[~2015-10-15 8:11 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-26 21:02 [PATCH v6 0/5] Add DT support for netxbig LEDs Simon Guinot
2015-09-26 21:02 ` Simon Guinot
2015-09-26 21:02 ` [PATCH v6 1/5] leds: netxbig: add device tree binding Simon Guinot
2015-09-26 21:02 ` Simon Guinot
2015-09-26 21:02 ` [PATCH v6 2/5] ARM: Kirkwood: add LED DT entries for netxbig boards Simon Guinot
2015-09-26 21:02 ` Simon Guinot
2015-09-26 21:02 ` [PATCH v6 3/5] ARM: mvebu: remove static LED setup " Simon Guinot
2015-09-26 21:02 ` Simon Guinot
2015-09-26 21:02 ` [PATCH v6 4/5] leds: netxbig: convert to use the devm_ functions Simon Guinot
2015-09-26 21:02 ` Simon Guinot
[not found] ` <1443301358-2131-1-git-send-email-simon.guinot-jKBdWWKqtFpg9hUCZPvPmw@public.gmane.org>
2015-09-26 21:02 ` [PATCH v6 5/5] leds: netxbig: set led_classdev max_brightness Simon Guinot
2015-09-26 21:02 ` Simon Guinot
2015-09-28 8:02 ` Jacek Anaszewski
2015-09-28 8:02 ` Jacek Anaszewski
2015-09-28 9:19 ` Simon Guinot
2015-09-28 9:19 ` Simon Guinot
2015-09-28 10:15 ` Jacek Anaszewski
2015-09-28 10:15 ` Jacek Anaszewski
[not found] ` <5609133A.3050802-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2015-09-28 11:50 ` Simon Guinot
2015-09-28 11:50 ` Simon Guinot
2015-09-28 12:24 ` Jacek Anaszewski
2015-09-28 12:24 ` Jacek Anaszewski
2015-09-28 13:25 ` Simon Guinot
2015-09-28 13:25 ` Simon Guinot
2015-09-28 13:43 ` Jacek Anaszewski
2015-09-28 13:43 ` Jacek Anaszewski
2015-10-09 9:43 ` [PATCH v6 0/5] Add DT support for netxbig LEDs Jacek Anaszewski
2015-10-09 9:43 ` Jacek Anaszewski
2015-10-15 7:16 ` Gregory CLEMENT
2015-10-15 7:16 ` Gregory CLEMENT
2015-10-15 8:11 ` Jacek Anaszewski [this message]
2015-10-15 8:11 ` Jacek Anaszewski
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=561F5FA7.2040000@samsung.com \
--to=j.anaszewski@samsung.com \
--cc=andrew@lunn.ch \
--cc=cooloney@gmail.com \
--cc=devicetree@vger.kernel.org \
--cc=gnurou@gmail.com \
--cc=gregory.clement@free-electrons.com \
--cc=jason@lakedaemon.net \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-leds@vger.kernel.org \
--cc=robh@kernel.org \
--cc=rpurdie@rpsys.net \
--cc=sebastian.hesselbarth@gmail.com \
--cc=simon.guinot@sequanux.org \
--cc=vdonnefort@gmail.com \
--cc=yoann@printk.fr \
/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.