From: "José Expósito" <jose.exposito89@gmail.com>
To: Kieran Bingham <kieran.bingham@ideasonboard.com>
Cc: andrzej.hajda@intel.com, linux-pwm@vger.kernel.org,
jonas@kwiboo.se, airlied@linux.ie, robert.foss@linaro.org,
dri-devel@lists.freedesktop.org, narmstrong@baylibre.com,
linux-kernel@vger.kernel.org, jernej.skrabec@gmail.com,
thierry.reding@gmail.com, Laurent.pinchart@ideasonboard.com,
u.kleine-koenig@pengutronix.de, lee.jones@linaro.org,
maxime@cerno.tech
Subject: Re: [PATCH] drm/bridge: ti-sn65dsi86: switch to devm_drm_of_get_bridge
Date: Thu, 3 Mar 2022 19:37:20 +0100 [thread overview]
Message-ID: <20220303183720.GA334969@elementary> (raw)
In-Reply-To: <164609067646.2361501.15747139249939190799@Monstersaurus>
On Mon, Feb 28, 2022 at 11:24:36PM +0000, Kieran Bingham wrote:
> Hi José
>
> Quoting José Expósito (2022-02-28 18:39:54)
> > The function "drm_of_find_panel_or_bridge" has been deprecated in
> > favor of "devm_drm_of_get_bridge".
> >
> > Switch to the new function and reduce boilerplate.
> >
> > Signed-off-by: José Expósito <jose.exposito89@gmail.com>
> > ---
> > drivers/gpu/drm/bridge/ti-sn65dsi86.c | 8 +-------
> > 1 file changed, 1 insertion(+), 7 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/bridge/ti-sn65dsi86.c b/drivers/gpu/drm/bridge/ti-sn65dsi86.c
> > index dab8f76618f3..fb8e16ed7e90 100644
> > --- a/drivers/gpu/drm/bridge/ti-sn65dsi86.c
> > +++ b/drivers/gpu/drm/bridge/ti-sn65dsi86.c
> > @@ -1232,15 +1232,9 @@ static int ti_sn_bridge_probe(struct auxiliary_device *adev,
> > {
> > struct ti_sn65dsi86 *pdata = dev_get_drvdata(adev->dev.parent);
> > struct device_node *np = pdata->dev->of_node;
> > - struct drm_panel *panel;
> > int ret;
> >
> > - ret = drm_of_find_panel_or_bridge(np, 1, 0, &panel, NULL);
> > - if (ret)
> > - return dev_err_probe(&adev->dev, ret,
> > - "could not find any panel node\n");
> > -
> > - pdata->next_bridge = devm_drm_panel_bridge_add(pdata->dev, panel);
> > + pdata->next_bridge = devm_drm_of_get_bridge(pdata->dev, np, 1, 0);
>
> Yikes, I was about to rely on this panel variable to determine if the
> device is a panel or a display port connector. (Well, I am relying on
> it, and patches are hoping to be reposted this week).
>
> Is there expected to be another way to identify if the next connection
> is a panel or a bridge?
>
> Regards
Hi Kieran,
I'm getting started in the DRM subsystem. I couldn't tell if there is a
good way to access the panel pointer... I didn't manage to find it, but
hopefully someone with more experience can point us to a solution.
Since you mentioned display port, I'm not sure if in your case checking
"pdata->next_bridge->type" could be good enough.
Anyway, if this patch causes you problems, please go ahead and ignore it.
I'm sure the series you are working on are more important than removing
a deprecated function :)
Best wishes,
Jose
WARNING: multiple messages have this Message-ID (diff)
From: "José Expósito" <jose.exposito89@gmail.com>
To: Kieran Bingham <kieran.bingham@ideasonboard.com>
Cc: linux-pwm@vger.kernel.org, jernej.skrabec@gmail.com,
maxime@cerno.tech, jonas@kwiboo.se, airlied@linux.ie,
narmstrong@baylibre.com, linux-kernel@vger.kernel.org,
dri-devel@lists.freedesktop.org, thierry.reding@gmail.com,
robert.foss@linaro.org, andrzej.hajda@intel.com,
u.kleine-koenig@pengutronix.de, lee.jones@linaro.org,
Laurent.pinchart@ideasonboard.com
Subject: Re: [PATCH] drm/bridge: ti-sn65dsi86: switch to devm_drm_of_get_bridge
Date: Thu, 3 Mar 2022 19:37:20 +0100 [thread overview]
Message-ID: <20220303183720.GA334969@elementary> (raw)
In-Reply-To: <164609067646.2361501.15747139249939190799@Monstersaurus>
On Mon, Feb 28, 2022 at 11:24:36PM +0000, Kieran Bingham wrote:
> Hi José
>
> Quoting José Expósito (2022-02-28 18:39:54)
> > The function "drm_of_find_panel_or_bridge" has been deprecated in
> > favor of "devm_drm_of_get_bridge".
> >
> > Switch to the new function and reduce boilerplate.
> >
> > Signed-off-by: José Expósito <jose.exposito89@gmail.com>
> > ---
> > drivers/gpu/drm/bridge/ti-sn65dsi86.c | 8 +-------
> > 1 file changed, 1 insertion(+), 7 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/bridge/ti-sn65dsi86.c b/drivers/gpu/drm/bridge/ti-sn65dsi86.c
> > index dab8f76618f3..fb8e16ed7e90 100644
> > --- a/drivers/gpu/drm/bridge/ti-sn65dsi86.c
> > +++ b/drivers/gpu/drm/bridge/ti-sn65dsi86.c
> > @@ -1232,15 +1232,9 @@ static int ti_sn_bridge_probe(struct auxiliary_device *adev,
> > {
> > struct ti_sn65dsi86 *pdata = dev_get_drvdata(adev->dev.parent);
> > struct device_node *np = pdata->dev->of_node;
> > - struct drm_panel *panel;
> > int ret;
> >
> > - ret = drm_of_find_panel_or_bridge(np, 1, 0, &panel, NULL);
> > - if (ret)
> > - return dev_err_probe(&adev->dev, ret,
> > - "could not find any panel node\n");
> > -
> > - pdata->next_bridge = devm_drm_panel_bridge_add(pdata->dev, panel);
> > + pdata->next_bridge = devm_drm_of_get_bridge(pdata->dev, np, 1, 0);
>
> Yikes, I was about to rely on this panel variable to determine if the
> device is a panel or a display port connector. (Well, I am relying on
> it, and patches are hoping to be reposted this week).
>
> Is there expected to be another way to identify if the next connection
> is a panel or a bridge?
>
> Regards
Hi Kieran,
I'm getting started in the DRM subsystem. I couldn't tell if there is a
good way to access the panel pointer... I didn't manage to find it, but
hopefully someone with more experience can point us to a solution.
Since you mentioned display port, I'm not sure if in your case checking
"pdata->next_bridge->type" could be good enough.
Anyway, if this patch causes you problems, please go ahead and ignore it.
I'm sure the series you are working on are more important than removing
a deprecated function :)
Best wishes,
Jose
next prev parent reply other threads:[~2022-03-03 18:37 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-28 18:39 [PATCH] drm/bridge: ti-sn65dsi86: switch to devm_drm_of_get_bridge José Expósito
2022-02-28 18:39 ` José Expósito
2022-02-28 23:24 ` Kieran Bingham
2022-02-28 23:24 ` Kieran Bingham
2022-03-03 18:37 ` José Expósito [this message]
2022-03-03 18:37 ` José Expósito
2022-03-03 21:59 ` Kieran Bingham
2022-03-03 21:59 ` Kieran Bingham
2022-03-04 12:12 ` Kieran Bingham
2022-03-04 12:12 ` Kieran Bingham
2022-03-09 13:53 ` Robert Foss
2022-03-09 13:53 ` Robert Foss
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=20220303183720.GA334969@elementary \
--to=jose.exposito89@gmail.com \
--cc=Laurent.pinchart@ideasonboard.com \
--cc=airlied@linux.ie \
--cc=andrzej.hajda@intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=jernej.skrabec@gmail.com \
--cc=jonas@kwiboo.se \
--cc=kieran.bingham@ideasonboard.com \
--cc=lee.jones@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pwm@vger.kernel.org \
--cc=maxime@cerno.tech \
--cc=narmstrong@baylibre.com \
--cc=robert.foss@linaro.org \
--cc=thierry.reding@gmail.com \
--cc=u.kleine-koenig@pengutronix.de \
/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.