All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jacek Anaszewski <j.anaszewski@samsung.com>
To: Simon Guinot <simon.guinot@sequanux.org>
Cc: Bryan Wu <cooloney@gmail.com>, Richard Purdie <rpurdie@rpsys.net>,
	Jason Cooper <jason@lakedaemon.net>, Andrew Lunn <andrew@lunn.ch>,
	Gregory Clement <gregory.clement@free-electrons.com>,
	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>,
	linux-leds@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	devicetree@vger.kernel.org,
	Vincent Donnefort <vdonnefort@gmail.com>
Subject: Re: [PATCH v2 0/4] Allow to use leds-ns2 with n090401 boards
Date: Mon, 13 Jul 2015 14:24:31 +0200	[thread overview]
Message-ID: <55A3ADFF.4090500@samsung.com> (raw)
In-Reply-To: <1435859803-19583-1-git-send-email-simon.guinot@sequanux.org>

Hi Simon,

On 07/02/2015 07:56 PM, Simon Guinot wrote:
> Hello,
>
> This patch series allows to use the leds-ns2 driver with the n090401
> boards (Seagate NAS 4-Bay), based on an Armada-370 SoC.
>
> Here is the list changes:
>
> - Allow to configure the LED mode mapping.
> - Handle can_sleep GPIOs. On n090401, the LEDs are connected to an I2C
>    GPIO expander.
> - Make leds-ns2 depends on MACH_ARMADA_370.
>
> Changes for v2:
> - Fix gpio_{get,set}_*_cansleep() usage while holding a spinlock:
>    Holding a spinlock at this places was not needed.
> - Add Acked-by from Jacek Anaszewski for patch 4.
>
> Simon
>
> Simon Guinot (2):
>    leds: leds-ns2: handle can_sleep GPIOs
>    leds: leds-ns2: depends on MACH_ARMADA_370
>
> Vincent Donnefort (2):
>    leds: leds-ns2: move LED modes mapping outside of the driver
>    ARM: Kirkwood: add modes-map property to ns2-leds nodes
>
>   .../devicetree/bindings/leds/leds-ns2.txt          |   9 ++
>   arch/arm/boot/dts/kirkwood-d2net.dts               |   5 +
>   arch/arm/boot/dts/kirkwood-is2.dts                 |   5 +
>   arch/arm/boot/dts/kirkwood-ns2.dts                 |   5 +
>   arch/arm/boot/dts/kirkwood-ns2max.dts              |   5 +
>   arch/arm/boot/dts/kirkwood-ns2mini.dts             |   5 +
>   drivers/leds/Kconfig                               |  12 +-
>   drivers/leds/leds-ns2.c                            | 169 ++++++++++++---------
>   include/dt-bindings/leds/leds-ns2.h                |   8 +
>   include/linux/platform_data/leds-kirkwood-ns2.h    |  14 ++
>   10 files changed, 165 insertions(+), 72 deletions(-)
>   create mode 100644 include/dt-bindings/leds/leds-ns2.h
>

For the whole patch set:

Acked-by: Jacek Anaszewski <j.anaszewski@samsung.com>

-- 
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 v2 0/4] Allow to use leds-ns2 with n090401 boards
Date: Mon, 13 Jul 2015 14:24:31 +0200	[thread overview]
Message-ID: <55A3ADFF.4090500@samsung.com> (raw)
In-Reply-To: <1435859803-19583-1-git-send-email-simon.guinot@sequanux.org>

Hi Simon,

On 07/02/2015 07:56 PM, Simon Guinot wrote:
> Hello,
>
> This patch series allows to use the leds-ns2 driver with the n090401
> boards (Seagate NAS 4-Bay), based on an Armada-370 SoC.
>
> Here is the list changes:
>
> - Allow to configure the LED mode mapping.
> - Handle can_sleep GPIOs. On n090401, the LEDs are connected to an I2C
>    GPIO expander.
> - Make leds-ns2 depends on MACH_ARMADA_370.
>
> Changes for v2:
> - Fix gpio_{get,set}_*_cansleep() usage while holding a spinlock:
>    Holding a spinlock at this places was not needed.
> - Add Acked-by from Jacek Anaszewski for patch 4.
>
> Simon
>
> Simon Guinot (2):
>    leds: leds-ns2: handle can_sleep GPIOs
>    leds: leds-ns2: depends on MACH_ARMADA_370
>
> Vincent Donnefort (2):
>    leds: leds-ns2: move LED modes mapping outside of the driver
>    ARM: Kirkwood: add modes-map property to ns2-leds nodes
>
>   .../devicetree/bindings/leds/leds-ns2.txt          |   9 ++
>   arch/arm/boot/dts/kirkwood-d2net.dts               |   5 +
>   arch/arm/boot/dts/kirkwood-is2.dts                 |   5 +
>   arch/arm/boot/dts/kirkwood-ns2.dts                 |   5 +
>   arch/arm/boot/dts/kirkwood-ns2max.dts              |   5 +
>   arch/arm/boot/dts/kirkwood-ns2mini.dts             |   5 +
>   drivers/leds/Kconfig                               |  12 +-
>   drivers/leds/leds-ns2.c                            | 169 ++++++++++++---------
>   include/dt-bindings/leds/leds-ns2.h                |   8 +
>   include/linux/platform_data/leds-kirkwood-ns2.h    |  14 ++
>   10 files changed, 165 insertions(+), 72 deletions(-)
>   create mode 100644 include/dt-bindings/leds/leds-ns2.h
>

For the whole patch set:

Acked-by: Jacek Anaszewski <j.anaszewski@samsung.com>

-- 
Best Regards,
Jacek Anaszewski

  parent reply	other threads:[~2015-07-13 12:24 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-02 17:56 [PATCH v2 0/4] Allow to use leds-ns2 with n090401 boards Simon Guinot
2015-07-02 17:56 ` Simon Guinot
2015-07-02 17:56 ` [PATCH v2 1/4] leds: leds-ns2: move LED modes mapping outside of the driver Simon Guinot
2015-07-02 17:56   ` Simon Guinot
2015-07-02 17:56 ` [PATCH v2 2/4] ARM: Kirkwood: add modes-map property to ns2-leds nodes Simon Guinot
2015-07-02 17:56   ` Simon Guinot
2015-07-25 14:42   ` Gregory CLEMENT
2015-07-25 14:42     ` Gregory CLEMENT
2015-07-28 10:32     ` Gregory CLEMENT
2015-07-28 10:32       ` Gregory CLEMENT
     [not found]       ` <55B75A2E.4080803-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
2015-07-28 11:34         ` Jacek Anaszewski
2015-07-28 11:34           ` Jacek Anaszewski
     [not found] ` <1435859803-19583-1-git-send-email-simon.guinot-jKBdWWKqtFpg9hUCZPvPmw@public.gmane.org>
2015-07-02 17:56   ` [PATCH v2 3/4] leds: leds-ns2: handle can_sleep GPIOs Simon Guinot
2015-07-02 17:56     ` Simon Guinot
2015-07-02 17:56 ` [PATCH v2 4/4] leds: leds-ns2: depends on MACH_ARMADA_370 Simon Guinot
2015-07-02 17:56   ` Simon Guinot
2015-07-13 12:24 ` Jacek Anaszewski [this message]
2015-07-13 12:24   ` [PATCH v2 0/4] Allow to use leds-ns2 with n090401 boards 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=55A3ADFF.4090500@samsung.com \
    --to=j.anaszewski@samsung.com \
    --cc=andrew@lunn.ch \
    --cc=cooloney@gmail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=gregory.clement@free-electrons.com \
    --cc=jason@lakedaemon.net \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-leds@vger.kernel.org \
    --cc=rpurdie@rpsys.net \
    --cc=sebastian.hesselbarth@gmail.com \
    --cc=simon.guinot@sequanux.org \
    --cc=vdonnefort@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.