Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1448632
| From | Sean Paul <seanpaul@chromium.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 1/1] drm/sti: use new Reset API |
| Date | 2016-07-22 17:30 +0200 |
| Message-ID | <rXKyJ-7ye-1@gated-at.bofh.it> (permalink) |
| References | <rXD4e-2FR-15@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Fri, Jul 22, 2016 at 3:22 AM, Lee Jones <lee.jones@linaro.org> wrote:
> Since 0b52297f228 ("reset: Add support for shared reset controls") the
> new Reset API now demands consumers choose either an *_exclusive or
> a *_shared line when requesting reset lines.
>
> Signed-off-by: Lee Jones <lee.jones@linaro.org>
> ---
> drivers/gpu/drm/sti/sti_compositor.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/sti/sti_compositor.c b/drivers/gpu/drm/sti/sti_compositor.c
> index 3d2fa3a..c2ace02 100644
> --- a/drivers/gpu/drm/sti/sti_compositor.c
> +++ b/drivers/gpu/drm/sti/sti_compositor.c
> @@ -234,12 +234,12 @@ static int sti_compositor_probe(struct platform_device *pdev)
> }
>
> /* Get reset resources */
> - compo->rst_main = devm_reset_control_get(dev, "compo-main");
> + compo->rst_main = devm_reset_control_get_shared(dev, "compo-main");
Seems like this patch also changes the behavior from being exclusively
managed to shared. Is this intentional? If so, it's probably worth
changing you commit message to be a little less innocuous.
> /* Take compo main out of reset */
> if (!IS_ERR(compo->rst_main))
> reset_control_deassert(compo->rst_main);
>
> - compo->rst_aux = devm_reset_control_get(dev, "compo-aux");
> + compo->rst_aux = devm_reset_control_get_shared(dev, "compo-aux");
> /* Take compo aux out of reset */
> if (!IS_ERR(compo->rst_aux))
> reset_control_deassert(compo->rst_aux);
> --
> 2.9.0
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 1/1] drm/sti: use new Reset API Lee Jones <lee.jones@linaro.org> - 2016-07-22 09:30 +0200
Re: [PATCH 1/1] drm/sti: use new Reset API Sean Paul <seanpaul@chromium.org> - 2016-07-22 17:30 +0200
Re: [PATCH 1/1] drm/sti: use new Reset API Lee Jones <lee.jones@linaro.org> - 2016-07-22 18:20 +0200
csiph-web