* [PATCH] drm/bridge/ti-sn65dsi86: Fix implicit declaration to drm_mode_connector_attach_encoder
@ 2018-07-30 17:42 Sean Paul
2018-07-31 4:21 ` spanda
0 siblings, 1 reply; 3+ messages in thread
From: Sean Paul @ 2018-07-30 17:42 UTC (permalink / raw)
To: dri-devel; +Cc: David Airlie, Sandeep Panda, Laurent Pinchart
This function name was changed to drm_connector_attach_encoder().
Unfortunately this driver was posted on the list before that change, and
applied after
Fixes: a095f15c00e2 ("drm/bridge: add support for sn65dsi86 bridge
driver")
Cc: Sandeep Panda <spanda@codeaurora.org>
Cc: Andrzej Hajda <a.hajda@samsung.com>
Cc: Archit Taneja <architt@codeaurora.org>
Cc: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
Signed-off-by: Sean Paul <seanpaul@chromium.org>
---
drivers/gpu/drm/bridge/ti-sn65dsi86.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/bridge/ti-sn65dsi86.c b/drivers/gpu/drm/bridge/ti-sn65dsi86.c
index 5b93ef518861..1b6e8b72be58 100644
--- a/drivers/gpu/drm/bridge/ti-sn65dsi86.c
+++ b/drivers/gpu/drm/bridge/ti-sn65dsi86.c
@@ -233,7 +233,7 @@ static int ti_sn_bridge_attach(struct drm_bridge *bridge)
drm_connector_helper_add(&pdata->connector,
&ti_sn_bridge_connector_helper_funcs);
- drm_mode_connector_attach_encoder(&pdata->connector, bridge->encoder);
+ drm_connector_attach_encoder(&pdata->connector, bridge->encoder);
/*
* TODO: ideally finding host resource and dsi dev registration needs
--
Sean Paul, Software Engineer, Google / Chromium OS
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] drm/bridge/ti-sn65dsi86: Fix implicit declaration to drm_mode_connector_attach_encoder
2018-07-30 17:42 [PATCH] drm/bridge/ti-sn65dsi86: Fix implicit declaration to drm_mode_connector_attach_encoder Sean Paul
@ 2018-07-31 4:21 ` spanda
2018-07-31 13:31 ` Sean Paul
0 siblings, 1 reply; 3+ messages in thread
From: spanda @ 2018-07-31 4:21 UTC (permalink / raw)
To: Sean Paul; +Cc: David Airlie, Laurent Pinchart, dri-devel
On 2018-07-30 23:12, Sean Paul wrote:
> This function name was changed to drm_connector_attach_encoder().
> Unfortunately this driver was posted on the list before that change,
> and
> applied after
>
> Fixes: a095f15c00e2 ("drm/bridge: add support for sn65dsi86 bridge
> driver")
> Cc: Sandeep Panda <spanda@codeaurora.org>
> Cc: Andrzej Hajda <a.hajda@samsung.com>
> Cc: Archit Taneja <architt@codeaurora.org>
> Cc: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
> Signed-off-by: Sean Paul <seanpaul@chromium.org>
> ---
> drivers/gpu/drm/bridge/ti-sn65dsi86.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/bridge/ti-sn65dsi86.c
> b/drivers/gpu/drm/bridge/ti-sn65dsi86.c
> index 5b93ef518861..1b6e8b72be58 100644
> --- a/drivers/gpu/drm/bridge/ti-sn65dsi86.c
> +++ b/drivers/gpu/drm/bridge/ti-sn65dsi86.c
> @@ -233,7 +233,7 @@ static int ti_sn_bridge_attach(struct drm_bridge
> *bridge)
>
> drm_connector_helper_add(&pdata->connector,
> &ti_sn_bridge_connector_helper_funcs);
> - drm_mode_connector_attach_encoder(&pdata->connector,
> bridge->encoder);
> + drm_connector_attach_encoder(&pdata->connector, bridge->encoder);
>
> /*
> * TODO: ideally finding host resource and dsi dev registration needs
Reviewed-by: Sandeep Panda <spanda@codeaurora.org>
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] drm/bridge/ti-sn65dsi86: Fix implicit declaration to drm_mode_connector_attach_encoder
2018-07-31 4:21 ` spanda
@ 2018-07-31 13:31 ` Sean Paul
0 siblings, 0 replies; 3+ messages in thread
From: Sean Paul @ 2018-07-31 13:31 UTC (permalink / raw)
To: spanda; +Cc: David Airlie, dri-devel, Laurent Pinchart
On Tue, Jul 31, 2018 at 09:51:16AM +0530, spanda@codeaurora.org wrote:
> On 2018-07-30 23:12, Sean Paul wrote:
> > This function name was changed to drm_connector_attach_encoder().
> > Unfortunately this driver was posted on the list before that change, and
> > applied after
> >
> > Fixes: a095f15c00e2 ("drm/bridge: add support for sn65dsi86 bridge
> > driver")
> > Cc: Sandeep Panda <spanda@codeaurora.org>
> > Cc: Andrzej Hajda <a.hajda@samsung.com>
> > Cc: Archit Taneja <architt@codeaurora.org>
> > Cc: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
> > Signed-off-by: Sean Paul <seanpaul@chromium.org>
> > ---
> > drivers/gpu/drm/bridge/ti-sn65dsi86.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/bridge/ti-sn65dsi86.c
> > b/drivers/gpu/drm/bridge/ti-sn65dsi86.c
> > index 5b93ef518861..1b6e8b72be58 100644
> > --- a/drivers/gpu/drm/bridge/ti-sn65dsi86.c
> > +++ b/drivers/gpu/drm/bridge/ti-sn65dsi86.c
> > @@ -233,7 +233,7 @@ static int ti_sn_bridge_attach(struct drm_bridge
> > *bridge)
> >
> > drm_connector_helper_add(&pdata->connector,
> > &ti_sn_bridge_connector_helper_funcs);
> > - drm_mode_connector_attach_encoder(&pdata->connector, bridge->encoder);
> > + drm_connector_attach_encoder(&pdata->connector, bridge->encoder);
> >
> > /*
> > * TODO: ideally finding host resource and dsi dev registration needs
> Reviewed-by: Sandeep Panda <spanda@codeaurora.org>
Applied to drm-misc-next. Thanks for your review!
Sean
--
Sean Paul, Software Engineer, Google / Chromium OS
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-07-31 13:31 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-30 17:42 [PATCH] drm/bridge/ti-sn65dsi86: Fix implicit declaration to drm_mode_connector_attach_encoder Sean Paul
2018-07-31 4:21 ` spanda
2018-07-31 13:31 ` Sean Paul
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.