Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1691880 > unrolled thread
| Started by | Philipp Zabel <p.zabel@pengutronix.de> |
|---|---|
| First post | 2017-07-19 17:40 +0200 |
| Last post | 2017-07-20 09:20 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 101/102] Documentation: devres: add explicit exclusive/shared reset control request calls Philipp Zabel <p.zabel@pengutronix.de> - 2017-07-19 17:40 +0200
Re: [PATCH 101/102] Documentation: devres: add explicit exclusive/shared reset control request calls Lee Jones <lee.jones@linaro.org> - 2017-07-20 09:20 +0200
| From | Philipp Zabel <p.zabel@pengutronix.de> |
|---|---|
| Date | 2017-07-19 17:40 +0200 |
| Subject | [PATCH 101/102] Documentation: devres: add explicit exclusive/shared reset control request calls |
| Message-ID | <u4ZeW-222-35@gated-at.bofh.it> |
Commit a53e35db70d1 ("reset: Ensure drivers are explicit when requesting
reset lines") started to transition the reset control request API calls
to explicitly state whether the driver needs exclusive or shared reset
control behavior. Add the explicit API calls to the devres list.
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Lee Jones <lee.jones@linaro.org>
Cc: linux-doc@vger.kernel.org
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
---
Documentation/driver-model/devres.txt | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/Documentation/driver-model/devres.txt b/Documentation/driver-model/devres.txt
index 30e04f7a690dd..fd157078dd558 100644
--- a/Documentation/driver-model/devres.txt
+++ b/Documentation/driver-model/devres.txt
@@ -379,7 +379,12 @@ REGULATOR
devm_regulator_register()
RESET
- devm_reset_control_get()
+ devm_reset_control_get_exclusive()
+ devm_reset_control_get_shared()
+ devm_reset_control_get_optional_exclusive()
+ devm_reset_control_get_optional_shared()
+ devm_reset_control_get_exclusive_by_index()
+ devm_reset_control_get_shared_by_index()
devm_reset_controller_register()
SLAVE DMA ENGINE
--
2.11.0
[toc] | [next] | [standalone]
| From | Lee Jones <lee.jones@linaro.org> |
|---|---|
| Date | 2017-07-20 09:20 +0200 |
| Subject | Re: [PATCH 101/102] Documentation: devres: add explicit exclusive/shared reset control request calls |
| Message-ID | <u5dUC-3XI-9@gated-at.bofh.it> |
| In reply to | #1691880 |
On Wed, 19 Jul 2017, Philipp Zabel wrote:
> Commit a53e35db70d1 ("reset: Ensure drivers are explicit when requesting
> reset lines") started to transition the reset control request API calls
> to explicitly state whether the driver needs exclusive or shared reset
> control behavior. Add the explicit API calls to the devres list.
>
> Cc: Jonathan Corbet <corbet@lwn.net>
> Cc: Lee Jones <lee.jones@linaro.org>
> Cc: linux-doc@vger.kernel.org
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> ---
> Documentation/driver-model/devres.txt | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
Acked-by: Lee Jones <lee.jones@linaro.org>
> diff --git a/Documentation/driver-model/devres.txt b/Documentation/driver-model/devres.txt
> index 30e04f7a690dd..fd157078dd558 100644
> --- a/Documentation/driver-model/devres.txt
> +++ b/Documentation/driver-model/devres.txt
> @@ -379,7 +379,12 @@ REGULATOR
> devm_regulator_register()
>
> RESET
> - devm_reset_control_get()
> + devm_reset_control_get_exclusive()
> + devm_reset_control_get_shared()
> + devm_reset_control_get_optional_exclusive()
> + devm_reset_control_get_optional_shared()
> + devm_reset_control_get_exclusive_by_index()
> + devm_reset_control_get_shared_by_index()
> devm_reset_controller_register()
>
> SLAVE DMA ENGINE
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web