All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/rockchip: rgb: add stub functions when rgb encoder is disabled
@ 2018-09-05 19:13 Heiko Stuebner
  2018-09-05 19:33 ` Sean Paul
  0 siblings, 1 reply; 3+ messages in thread
From: Heiko Stuebner @ 2018-09-05 19:13 UTC (permalink / raw)
  To: hjc; +Cc: linux-rockchip, dri-devel

The newly added internal rgb encoder for Rockchip vops is missing
stubs for the case that the rgb output part is not enabled in the
kernel config. So add these.

Fixes: 1f0f01515172 ("drm/rockchip: Add support for Rockchip Soc RGB output interface")
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
---
 drivers/gpu/drm/rockchip/rockchip_rgb.h | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/drivers/gpu/drm/rockchip/rockchip_rgb.h b/drivers/gpu/drm/rockchip/rockchip_rgb.h
index c712a673d1e3..bcd903688491 100644
--- a/drivers/gpu/drm/rockchip/rockchip_rgb.h
+++ b/drivers/gpu/drm/rockchip/rockchip_rgb.h
@@ -14,7 +14,21 @@
  * GNU General Public License for more details.
  */
 
+#ifdef CONFIG_ROCKCHIP_RGB
 struct rockchip_rgb *rockchip_rgb_init(struct device *dev,
 				       struct drm_crtc *crtc,
 				       struct drm_device *drm_dev);
 void rockchip_rgb_fini(struct rockchip_rgb *rgb);
+#else
+static inline struct rockchip_rgb *rockchip_rgb_init(struct device *dev,
+				       struct drm_crtc *crtc,
+				       struct drm_device *drm_dev)
+{
+	return NULL;
+}
+
+static inline void rockchip_rgb_fini(struct rockchip_rgb *rgb)
+{
+	return;
+}
+#endif
-- 
2.17.0

_______________________________________________
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/rockchip: rgb: add stub functions when rgb encoder is disabled
  2018-09-05 19:13 [PATCH] drm/rockchip: rgb: add stub functions when rgb encoder is disabled Heiko Stuebner
@ 2018-09-05 19:33 ` Sean Paul
  2018-09-05 19:45   ` Sean Paul
  0 siblings, 1 reply; 3+ messages in thread
From: Sean Paul @ 2018-09-05 19:33 UTC (permalink / raw)
  To: Heiko Stuebner; +Cc: linux-rockchip, dri-devel

On Wed, Sep 05, 2018 at 09:13:02PM +0200, Heiko Stuebner wrote:
> The newly added internal rgb encoder for Rockchip vops is missing
> stubs for the case that the rgb output part is not enabled in the
> kernel config. So add these.
> 
> Fixes: 1f0f01515172 ("drm/rockchip: Add support for Rockchip Soc RGB output interface")
> Signed-off-by: Heiko Stuebner <heiko@sntech.de>
> ---
>  drivers/gpu/drm/rockchip/rockchip_rgb.h | 14 ++++++++++++++
>  1 file changed, 14 insertions(+)
> 
> diff --git a/drivers/gpu/drm/rockchip/rockchip_rgb.h b/drivers/gpu/drm/rockchip/rockchip_rgb.h
> index c712a673d1e3..bcd903688491 100644
> --- a/drivers/gpu/drm/rockchip/rockchip_rgb.h
> +++ b/drivers/gpu/drm/rockchip/rockchip_rgb.h
> @@ -14,7 +14,21 @@
>   * GNU General Public License for more details.
>   */
>  
> +#ifdef CONFIG_ROCKCHIP_RGB
>  struct rockchip_rgb *rockchip_rgb_init(struct device *dev,
>  				       struct drm_crtc *crtc,
>  				       struct drm_device *drm_dev);
>  void rockchip_rgb_fini(struct rockchip_rgb *rgb);
> +#else
> +static inline struct rockchip_rgb *rockchip_rgb_init(struct device *dev,
> +				       struct drm_crtc *crtc,
> +				       struct drm_device *drm_dev)
> +{
> +	return NULL;
> +}
> +
> +static inline void rockchip_rgb_fini(struct rockchip_rgb *rgb)
> +{
> +	return;

This return is redundant. With that nit fixed, feel free to commit with

Reviewed-by: Sean Paul <seanpaul@chromium.org>


> +}
> +#endif
> -- 
> 2.17.0
> 
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

-- 
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

* Re: [PATCH] drm/rockchip: rgb: add stub functions when rgb encoder is disabled
  2018-09-05 19:33 ` Sean Paul
@ 2018-09-05 19:45   ` Sean Paul
  0 siblings, 0 replies; 3+ messages in thread
From: Sean Paul @ 2018-09-05 19:45 UTC (permalink / raw)
  To: Heiko Stuebner; +Cc: linux-rockchip, dri-devel

On Wed, Sep 05, 2018 at 03:33:56PM -0400, Sean Paul wrote:
> On Wed, Sep 05, 2018 at 09:13:02PM +0200, Heiko Stuebner wrote:
> > The newly added internal rgb encoder for Rockchip vops is missing
> > stubs for the case that the rgb output part is not enabled in the
> > kernel config. So add these.
> > 
> > Fixes: 1f0f01515172 ("drm/rockchip: Add support for Rockchip Soc RGB output interface")
> > Signed-off-by: Heiko Stuebner <heiko@sntech.de>
> > ---
> >  drivers/gpu/drm/rockchip/rockchip_rgb.h | 14 ++++++++++++++
> >  1 file changed, 14 insertions(+)
> > 
> > diff --git a/drivers/gpu/drm/rockchip/rockchip_rgb.h b/drivers/gpu/drm/rockchip/rockchip_rgb.h
> > index c712a673d1e3..bcd903688491 100644
> > --- a/drivers/gpu/drm/rockchip/rockchip_rgb.h
> > +++ b/drivers/gpu/drm/rockchip/rockchip_rgb.h
> > @@ -14,7 +14,21 @@
> >   * GNU General Public License for more details.
> >   */
> >  
> > +#ifdef CONFIG_ROCKCHIP_RGB
> >  struct rockchip_rgb *rockchip_rgb_init(struct device *dev,
> >  				       struct drm_crtc *crtc,
> >  				       struct drm_device *drm_dev);
> >  void rockchip_rgb_fini(struct rockchip_rgb *rgb);
> > +#else
> > +static inline struct rockchip_rgb *rockchip_rgb_init(struct device *dev,
> > +				       struct drm_crtc *crtc,
> > +				       struct drm_device *drm_dev)
> > +{
> > +	return NULL;
> > +}
> > +
> > +static inline void rockchip_rgb_fini(struct rockchip_rgb *rgb)
> > +{
> > +	return;
> 
> This return is redundant. With that nit fixed, feel free to commit with
> 
> Reviewed-by: Sean Paul <seanpaul@chromium.org>

I went ahead and applied this myself since I'm prepping a pull request.

Thanks for the quick fix.

Sean

> 
> 
> > +}
> > +#endif
> > -- 
> > 2.17.0
> > 
> > _______________________________________________
> > dri-devel mailing list
> > dri-devel@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/dri-devel
> 
> -- 
> Sean Paul, Software Engineer, Google / Chromium OS

-- 
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-09-05 19:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-05 19:13 [PATCH] drm/rockchip: rgb: add stub functions when rgb encoder is disabled Heiko Stuebner
2018-09-05 19:33 ` Sean Paul
2018-09-05 19:45   ` 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.