drm/rockchip: rgb: add stub functions when rgb encoder is disabled
authorHeiko Stuebner <heiko@sntech.de>
Wed, 5 Sep 2018 19:13:02 +0000 (21:13 +0200)
committerSean Paul <seanpaul@chromium.org>
Wed, 5 Sep 2018 19:43:14 +0000 (15:43 -0400)
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)
Reviewed-by: Sean Paul <seanpaul@chromium.org>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
[seanpaul fixed up checkpatch nits]
Signed-off-by: Sean Paul <seanpaul@chromium.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20180905191302.26023-1-heiko@sntech.de
drivers/gpu/drm/rockchip/rockchip_rgb.h

index c712a673d1e32f303c91ba5cf28faad07f76f585..38b52e63b2b04f583296e700af528c4eacd2c080 100644 (file)
  * 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)
+{
+}
+#endif