Commit a0b21e0a authored by Robin Murphy's avatar Robin Murphy Committed by Rob Clark

drm/msm: Add missing stub definition

DRM_MSM fails to build with DRM_MSM_DP=n; add the missing stub.
Signed-off-by: default avatarRobin Murphy <robin.murphy@arm.com>
Reviewed-by: default avatarRob Clark <robdclark@gmail.com>
Fixes: 8ede2ecc ("drm/msm/dp: Add DP compliance tests on
Signed-off-by: default avatarRob Clark <robdclark@chromium.org>
parent 6400a8e8
...@@ -424,6 +424,11 @@ static inline int msm_dp_display_disable(struct msm_dp *dp, ...@@ -424,6 +424,11 @@ static inline int msm_dp_display_disable(struct msm_dp *dp,
{ {
return -EINVAL; return -EINVAL;
} }
static inline int msm_dp_display_pre_disable(struct msm_dp *dp,
struct drm_encoder *encoder)
{
return -EINVAL;
}
static inline void msm_dp_display_mode_set(struct msm_dp *dp, static inline void msm_dp_display_mode_set(struct msm_dp *dp,
struct drm_encoder *encoder, struct drm_encoder *encoder,
struct drm_display_mode *mode, struct drm_display_mode *mode,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment