Re: [PATCHv2 09/10] rfkill: Userspace control for airplane mode

2016-02-23 Thread Pavel Machek
On Tue 2016-02-23 21:55:14, Johannes Berg wrote: > On Tue, 2016-02-23 at 21:45 +0100, Pavel Machek wrote: > > > So... you add LED trigger to display the state of the airplane > > mode. Ok, why not. > > Yes. However, consider that "the airplane mode" isn't a well-defined > concept; some systems ma

Re: [PATCHv2 09/10] rfkill: Userspace control for airplane mode

2016-02-23 Thread Johannes Berg
On Tue, 2016-02-23 at 21:45 +0100, Pavel Machek wrote: > So... you add LED trigger to display the state of the airplane > mode. Ok, why not. Yes. However, consider that "the airplane mode" isn't a well-defined concept; some systems may want to light up that LED even when wifi is still enabled, si

Re: [PATCHv2 09/10] rfkill: Userspace control for airplane mode

2016-02-23 Thread Pavel Machek
Hi! [BTW you should probably Cc people responsible for LED subsystem...] > Provide an interface for the airplane-mode indicator be controlled from > userspace. User has to first acquire the control through > RFKILL_OP_AIRPLANE_MODE_ACQUIRE and keep the fd open for the whole time > it wants to be

Re: [PATCHv2 04/10] rfkill: Move "state" sysfs file back to stable

2016-02-23 Thread Pavel Machek
On Mon 2016-02-22 11:36:35, João Paulo Rechi Vita wrote: > There is still quite a bit of code using this interface, so we can't > just remove it. Hopefully it will be possible in the future, but since > its scheduled removal date is past 2 years already, we are better having > the documentation ref

Re: [PATCH v5 01/11] drm/hisilicon: Add device tree binding for hi6220 display subsystem

2016-02-23 Thread Mark Rutland
On Tue, Feb 23, 2016 at 11:00:21AM +0800, Xinliang Liu wrote: > Add ADE display controller binding doc. > Add DesignWare DSI Host Controller v1.20a binding doc. > > v5: > - Remove endpoint unit address of dsi output port. > - Add "hisilicon,noc-syscon" property for ADE NOC QoS syscon. > - Add "res

Re: [PATCH 46/61] gpio: tegra: Use devm_gpiochip_add_data() for gpio registration

2016-02-23 Thread Thierry Reding
On Mon, Feb 22, 2016 at 07:38:35PM +0530, Laxman Dewangan wrote: > Use devm_gpiochip_add_data() for GPIO registration. > > Signed-off-by: Laxman Dewangan > Cc: Stephen Warren > Cc: Thierry Reding > --- > drivers/gpio/gpio-tegra.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > dif

[PATCH] Documentation: kselftest: Remove duplicate word

2016-02-23 Thread Zhiyi Sun
Remove duplicate word "for" in kselftest.txt. Signed-off-by: Zhiyi Sun --- Documentation/kselftest.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/kselftest.txt b/Documentation/kselftest.txt index 9bbbcdc..979eaca 100644 --- a/Documentation/kselftest.txt +++

Re: [PATCH 00/61] gpio: Add and use devm_gpiochip_add_data()

2016-02-23 Thread Laxman Dewangan
Hi Linus, On Tuesday 23 February 2016 02:31 PM, Laxman Dewangan wrote: On Monday 22 February 2016 08:14 PM, Linus Walleij wrote: On Mon, Feb 22, 2016 at 3:07 PM, Laxman Dewangan wrote: Add resource management APIs for gpiochip_add_data() and gpiochip_remove() and use these APIs from diffe

Re: [PATCH 10/61] gpio: ath79: Use devm_gpiochip_add_data() for gpio registration

2016-02-23 Thread Laxman Dewangan
On Tuesday 23 February 2016 01:43 AM, Alban wrote: On Mon, 22 Feb 2016 19:37:59 +0530 Laxman Dewangan wrote: Use devm_gpiochip_add_data() for GPIO registration. Signed-off-by: Laxman Dewangan Cc: Alban Bedel --- drivers/gpio/gpio-ath79.c | 2 +- 1 file changed, 1 insertion(+), 1 deletio

Re: [PATCH] Doc: xtensa : Fix a typo in atomctl.txt

2016-02-23 Thread Masanari Iida
Hi Jon, The patch was based on linux-next ( next-20160222 ). Masanari On Mon, Feb 22, 2016 at 10:22 PM, Jonathan Corbet wrote: > On Mon, 22 Feb 2016 20:41:54 +0900 > Masanari Iida wrote: > >> -use the memory controllers RCW, thought non-MX controlers likely >> +use the memory controllers RCW, th

Re: [PATCH 07/61] gpio: adp5588: Use devm_gpiochip_add_data() for gpio registration

2016-02-23 Thread Michael Hennerich
On 02/22/2016 03:07 PM, Laxman Dewangan wrote: Use devm_gpiochip_add_data() for GPIO registration and remove the call for gpiochip_remove() from remove callback. Signed-off-by: Laxman Dewangan Acked-by: Michael Hennerich Cc: Michael Hennerich --- drivers/gpio/gpio-adp5588.c | 4 +--- 1

Re: [PATCH 06/61] gpio: adp5520: Use devm_gpiochip_add_data() for gpio registration

2016-02-23 Thread Michael Hennerich
On 02/22/2016 03:07 PM, Laxman Dewangan wrote: Use devm_gpiochip_add_data() for GPIO registration and remove the call for gpiochip_remove() from error path. Also remove the need of driver callback .remove. Signed-off-by: Laxman Dewangan Acked-by: Michael Hennerich Cc: Michael Hennerich -

Re: [PATCH 00/61] gpio: Add and use devm_gpiochip_add_data()

2016-02-23 Thread Laxman Dewangan
On Monday 22 February 2016 08:14 PM, Linus Walleij wrote: On Mon, Feb 22, 2016 at 3:07 PM, Laxman Dewangan wrote: Add resource management APIs for gpiochip_add_data() and gpiochip_remove() and use these APIs from different HW drivers. This is based on discussion on patch to use the new APIs.