Re: [PATCH 13/14] drm/mediatek: hdmi: clean up drm_bridge_add call

2017-07-05 Thread Archit Taneja



On 07/03/2017 02:12 PM, Inki Dae wrote:

This patch removes unnecessary checking of return value.


Can I get an ack from the maintainers to get this pulled in
via drm-misc?

Thanks,
Archit



Signed-off-by: Inki Dae 
---
  drivers/gpu/drm/mediatek/mtk_hdmi.c | 6 +-
  1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/mediatek/mtk_hdmi.c 
b/drivers/gpu/drm/mediatek/mtk_hdmi.c
index 0a4ffd7..62652ee 100644
--- a/drivers/gpu/drm/mediatek/mtk_hdmi.c
+++ b/drivers/gpu/drm/mediatek/mtk_hdmi.c
@@ -1697,11 +1697,7 @@ static int mtk_drm_hdmi_probe(struct platform_device 
*pdev)
  
  	hdmi->bridge.funcs = &mtk_hdmi_bridge_funcs;

hdmi->bridge.of_node = pdev->dev.of_node;
-   ret = drm_bridge_add(&hdmi->bridge);
-   if (ret) {
-   dev_err(dev, "failed to add bridge, ret = %d\n", ret);
-   return ret;
-   }
+   drm_bridge_add(&hdmi->bridge);
  
  	ret = mtk_hdmi_clk_enable_audio(hdmi);

if (ret) {



--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel


Re: [PATCH 13/14] drm/mediatek: hdmi: clean up drm_bridge_add call

2017-08-18 Thread Daniel Vetter
On Wed, Jul 05, 2017 at 02:31:57PM +0530, Archit Taneja wrote:
> 
> 
> On 07/03/2017 02:12 PM, Inki Dae wrote:
> > This patch removes unnecessary checking of return value.
> 
> Can I get an ack from the maintainers to get this pulled in
> via drm-misc?

Almost two weeks of no replies, I'd say go ahead and assume the
maintainers are absent. That's what I generally do, otherwise it's pretty
much impossible to land such cleanups.
-Daniel

> 
> Thanks,
> Archit
> 
> > 
> > Signed-off-by: Inki Dae 
> > ---
> >   drivers/gpu/drm/mediatek/mtk_hdmi.c | 6 +-
> >   1 file changed, 1 insertion(+), 5 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/mediatek/mtk_hdmi.c 
> > b/drivers/gpu/drm/mediatek/mtk_hdmi.c
> > index 0a4ffd7..62652ee 100644
> > --- a/drivers/gpu/drm/mediatek/mtk_hdmi.c
> > +++ b/drivers/gpu/drm/mediatek/mtk_hdmi.c
> > @@ -1697,11 +1697,7 @@ static int mtk_drm_hdmi_probe(struct platform_device 
> > *pdev)
> > hdmi->bridge.funcs = &mtk_hdmi_bridge_funcs;
> > hdmi->bridge.of_node = pdev->dev.of_node;
> > -   ret = drm_bridge_add(&hdmi->bridge);
> > -   if (ret) {
> > -   dev_err(dev, "failed to add bridge, ret = %d\n", ret);
> > -   return ret;
> > -   }
> > +   drm_bridge_add(&hdmi->bridge);
> > ret = mtk_hdmi_clk_enable_audio(hdmi);
> > if (ret) {
> > 
> 
> -- 
> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
> a Linux Foundation Collaborative Project
> ___
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel


Re: [PATCH 13/14] drm/mediatek: hdmi: clean up drm_bridge_add call

2017-08-18 Thread CK Hu
On Fri, 2017-08-18 at 10:54 +0200, Daniel Vetter wrote:
> On Wed, Jul 05, 2017 at 02:31:57PM +0530, Archit Taneja wrote:
> > 
> > 
> > On 07/03/2017 02:12 PM, Inki Dae wrote:
> > > This patch removes unnecessary checking of return value.
> > 
> > Can I get an ack from the maintainers to get this pulled in
> > via drm-misc?
> 
> Almost two weeks of no replies, I'd say go ahead and assume the
> maintainers are absent. That's what I generally do, otherwise it's pretty
> much impossible to land such cleanups.
> -Daniel

Yes, I'm absent, so go ahead.

Acked-by: CK Hu 

> 
> > 
> > Thanks,
> > Archit
> > 
> > > 
> > > Signed-off-by: Inki Dae 
> > > ---
> > >   drivers/gpu/drm/mediatek/mtk_hdmi.c | 6 +-
> > >   1 file changed, 1 insertion(+), 5 deletions(-)
> > > 
> > > diff --git a/drivers/gpu/drm/mediatek/mtk_hdmi.c 
> > > b/drivers/gpu/drm/mediatek/mtk_hdmi.c
> > > index 0a4ffd7..62652ee 100644
> > > --- a/drivers/gpu/drm/mediatek/mtk_hdmi.c
> > > +++ b/drivers/gpu/drm/mediatek/mtk_hdmi.c
> > > @@ -1697,11 +1697,7 @@ static int mtk_drm_hdmi_probe(struct 
> > > platform_device *pdev)
> > >   hdmi->bridge.funcs = &mtk_hdmi_bridge_funcs;
> > >   hdmi->bridge.of_node = pdev->dev.of_node;
> > > - ret = drm_bridge_add(&hdmi->bridge);
> > > - if (ret) {
> > > - dev_err(dev, "failed to add bridge, ret = %d\n", ret);
> > > - return ret;
> > > - }
> > > + drm_bridge_add(&hdmi->bridge);
> > >   ret = mtk_hdmi_clk_enable_audio(hdmi);
> > >   if (ret) {
> > > 
> > 
> > -- 
> > Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
> > a Linux Foundation Collaborative Project
> > ___
> > dri-devel mailing list
> > dri-devel@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/dri-devel
> 


___
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel