aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/drm/msm/mdp/mdp5/mdp5_ctl.c2
-rw-r--r--drivers/gpu/drm/msm/mdp/mdp5/mdp5_ctl.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_ctl.c b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_ctl.c
index dea4505ac963..151129032d16 100644
--- a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_ctl.c
+++ b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_ctl.c
@@ -95,7 +95,7 @@ u32 ctl_read(struct mdp5_ctl *ctl, u32 reg)
95} 95}
96 96
97 97
98int mdp5_ctl_set_intf(struct mdp5_ctl *ctl, enum mdp5_intf intf) 98int mdp5_ctl_set_intf(struct mdp5_ctl *ctl, int intf)
99{ 99{
100 unsigned long flags; 100 unsigned long flags;
101 static const enum mdp5_intfnum intfnum[] = { 101 static const enum mdp5_intfnum intfnum[] = {
diff --git a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_ctl.h b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_ctl.h
index 1018519b6af2..ad48788efeea 100644
--- a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_ctl.h
+++ b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_ctl.h
@@ -34,7 +34,7 @@ void mdp5_ctlm_destroy(struct mdp5_ctl_manager *ctlm);
34 */ 34 */
35struct mdp5_ctl *mdp5_ctlm_request(struct mdp5_ctl_manager *ctlm, struct drm_crtc *crtc); 35struct mdp5_ctl *mdp5_ctlm_request(struct mdp5_ctl_manager *ctlm, struct drm_crtc *crtc);
36 36
37int mdp5_ctl_set_intf(struct mdp5_ctl *ctl, enum mdp5_intf intf); 37int mdp5_ctl_set_intf(struct mdp5_ctl *ctl, int intf);
38 38
39int mdp5_ctl_set_cursor(struct mdp5_ctl *ctl, bool enable); 39int mdp5_ctl_set_cursor(struct mdp5_ctl *ctl, bool enable);
40 40