* Re: [PATCH] reset: Add optional resets and stubs
2014-03-07 14:30 [PATCH] reset: Add optional resets and stubs Philipp Zabel
@ 2014-03-07 15:39 ` Wolfram Sang
2014-03-07 17:06 ` Philipp Zabel
2014-03-07 17:57 ` Maxime Ripard
` (3 subsequent siblings)
4 siblings, 1 reply; 7+ messages in thread
From: Wolfram Sang @ 2014-03-07 15:39 UTC (permalink / raw)
To: Philipp Zabel
Cc: linux-kernel, Chen-Yu Tsai, Ivan T. Ivanov, Barry Song,
Stephen Warren, Pavel Machek, Shawn Guo, Marek Vasut,
Stephen Warren, Maxime Ripard, kernel
[-- Attachment #1: Type: text/plain, Size: 612 bytes --]
On Fri, Mar 07, 2014 at 03:30:23PM +0100, Philipp Zabel wrote:
> This patch adds device_reset_optional and (devm_)reset_control_get_optional
> variants that drivers can use to indicate they can function without control
> over the reset line. For those functions, stubs are added so the drivers can
> be compiled with CONFIG_RESET_CONTROLLER disabled.
> Also, device_reset is annotated with __must_check. Drivers ignoring the return
> value should use device_reset_optional instead.
>
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Yay, thanks for fixing that! Do you pick it up yourself?
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH] reset: Add optional resets and stubs
2014-03-07 15:39 ` Wolfram Sang
@ 2014-03-07 17:06 ` Philipp Zabel
0 siblings, 0 replies; 7+ messages in thread
From: Philipp Zabel @ 2014-03-07 17:06 UTC (permalink / raw)
To: Wolfram Sang
Cc: linux-kernel, Chen-Yu Tsai, Ivan T. Ivanov, Barry Song,
Stephen Warren, Pavel Machek, Shawn Guo, Marek Vasut,
Stephen Warren, Maxime Ripard, kernel
Hi Wolfram,
Am Freitag, den 07.03.2014, 16:39 +0100 schrieb Wolfram Sang:
> On Fri, Mar 07, 2014 at 03:30:23PM +0100, Philipp Zabel wrote:
> > This patch adds device_reset_optional and (devm_)reset_control_get_optional
> > variants that drivers can use to indicate they can function without control
> > over the reset line. For those functions, stubs are added so the drivers can
> > be compiled with CONFIG_RESET_CONTROLLER disabled.
> > Also, device_reset is annotated with __must_check. Drivers ignoring the return
> > value should use device_reset_optional instead.
> >
> > Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
>
> Yay, thanks for fixing that! Do you pick it up yourself?
yes, I can do that.
Does this work for all interested parties?
regards
Philipp
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] reset: Add optional resets and stubs
2014-03-07 14:30 [PATCH] reset: Add optional resets and stubs Philipp Zabel
2014-03-07 15:39 ` Wolfram Sang
@ 2014-03-07 17:57 ` Maxime Ripard
2014-03-08 11:38 ` Marek Vasut
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Maxime Ripard @ 2014-03-07 17:57 UTC (permalink / raw)
To: Philipp Zabel
Cc: linux-kernel, Wolfram Sang, Chen-Yu Tsai, Ivan T. Ivanov,
Barry Song, Stephen Warren, Pavel Machek, Shawn Guo, Marek Vasut,
Stephen Warren, kernel
[-- Attachment #1: Type: text/plain, Size: 763 bytes --]
Hi Philipp,
On Fri, Mar 07, 2014 at 03:30:23PM +0100, Philipp Zabel wrote:
> This patch adds device_reset_optional and (devm_)reset_control_get_optional
> variants that drivers can use to indicate they can function without control
> over the reset line. For those functions, stubs are added so the drivers can
> be compiled with CONFIG_RESET_CONTROLLER disabled.
> Also, device_reset is annotated with __must_check. Drivers ignoring the return
> value should use device_reset_optional instead.
>
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Reviewed-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Thanks!
Maxime
--
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH] reset: Add optional resets and stubs
2014-03-07 14:30 [PATCH] reset: Add optional resets and stubs Philipp Zabel
2014-03-07 15:39 ` Wolfram Sang
2014-03-07 17:57 ` Maxime Ripard
@ 2014-03-08 11:38 ` Marek Vasut
2014-03-08 22:34 ` Wolfram Sang
2014-03-10 9:39 ` Ivan T. Ivanov
4 siblings, 0 replies; 7+ messages in thread
From: Marek Vasut @ 2014-03-08 11:38 UTC (permalink / raw)
To: Philipp Zabel
Cc: linux-kernel, Wolfram Sang, Chen-Yu Tsai, Ivan T. Ivanov,
Barry Song, Stephen Warren, Pavel Machek, Shawn Guo,
Stephen Warren, Maxime Ripard, kernel
On Friday, March 07, 2014 at 03:30:23 PM, Philipp Zabel wrote:
> This patch adds device_reset_optional and (devm_)reset_control_get_optional
> variants that drivers can use to indicate they can function without control
> over the reset line. For those functions, stubs are added so the drivers
> can be compiled with CONFIG_RESET_CONTROLLER disabled.
> Also, device_reset is annotated with __must_check. Drivers ignoring the
> return value should use device_reset_optional instead.
>
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Nice.
Reviewed-by: Marek Vasut <marex@denx.de>
Best regards,
Marek Vasut
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] reset: Add optional resets and stubs
2014-03-07 14:30 [PATCH] reset: Add optional resets and stubs Philipp Zabel
` (2 preceding siblings ...)
2014-03-08 11:38 ` Marek Vasut
@ 2014-03-08 22:34 ` Wolfram Sang
2014-03-10 9:39 ` Ivan T. Ivanov
4 siblings, 0 replies; 7+ messages in thread
From: Wolfram Sang @ 2014-03-08 22:34 UTC (permalink / raw)
To: Philipp Zabel
Cc: linux-kernel, Chen-Yu Tsai, Ivan T. Ivanov, Barry Song,
Stephen Warren, Pavel Machek, Shawn Guo, Marek Vasut,
Stephen Warren, Maxime Ripard, kernel
[-- Attachment #1: Type: text/plain, Size: 598 bytes --]
On Fri, Mar 07, 2014 at 03:30:23PM +0100, Philipp Zabel wrote:
> This patch adds device_reset_optional and (devm_)reset_control_get_optional
> variants that drivers can use to indicate they can function without control
> over the reset line. For those functions, stubs are added so the drivers can
> be compiled with CONFIG_RESET_CONTROLLER disabled.
> Also, device_reset is annotated with __must_check. Drivers ignoring the return
> value should use device_reset_optional instead.
>
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Acked-by: Wolfram Sang <wsa@the-dreams.de>
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH] reset: Add optional resets and stubs
2014-03-07 14:30 [PATCH] reset: Add optional resets and stubs Philipp Zabel
` (3 preceding siblings ...)
2014-03-08 22:34 ` Wolfram Sang
@ 2014-03-10 9:39 ` Ivan T. Ivanov
4 siblings, 0 replies; 7+ messages in thread
From: Ivan T. Ivanov @ 2014-03-10 9:39 UTC (permalink / raw)
To: Philipp Zabel, linux-kernel
Cc: Wolfram Sang, Chen-Yu Tsai, Barry Song, Stephen Warren,
Pavel Machek, Shawn Guo, Marek Vasut, Stephen Warren,
Maxime Ripard, kernel
On 03/07/14 16:30, Philipp Zabel wrote:
> This patch adds device_reset_optional and (devm_)reset_control_get_optional
> variants that drivers can use to indicate they can function without control
> over the reset line. For those functions, stubs are added so the drivers can
> be compiled with CONFIG_RESET_CONTROLLER disabled.
> Also, device_reset is annotated with __must_check. Drivers ignoring the return
> value should use device_reset_optional instead.
>
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Thanks.
Reviewed-by: Ivan T. Ivanov <iivanov@mm-sol.com>
^ permalink raw reply [flat|nested] 7+ messages in thread