|
@@ -30,6 +30,8 @@ enum rcar_lvds_input {
|
|
|
int rcar_du_lvdsenc_init(struct rcar_du_device *rcdu);
|
|
|
int rcar_du_lvdsenc_enable(struct rcar_du_lvdsenc *lvds,
|
|
|
struct drm_crtc *crtc, bool enable);
|
|
|
+void rcar_du_lvdsenc_atomic_check(struct rcar_du_lvdsenc *lvds,
|
|
|
+ struct drm_display_mode *mode);
|
|
|
#else
|
|
|
static inline int rcar_du_lvdsenc_init(struct rcar_du_device *rcdu)
|
|
|
{
|
|
@@ -40,6 +42,10 @@ static inline int rcar_du_lvdsenc_enable(struct rcar_du_lvdsenc *lvds,
|
|
|
{
|
|
|
return 0;
|
|
|
}
|
|
|
+static inline void rcar_du_lvdsenc_atomic_check(struct rcar_du_lvdsenc *lvds,
|
|
|
+ struct drm_display_mode *mode)
|
|
|
+{
|
|
|
+}
|
|
|
#endif
|
|
|
|
|
|
#endif /* __RCAR_DU_LVDSENC_H__ */
|