aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/drm/exynos_drm.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/include/drm/exynos_drm.h b/include/drm/exynos_drm.h
index 70c0f7e7db82..44f79cf468d4 100644
--- a/include/drm/exynos_drm.h
+++ b/include/drm/exynos_drm.h
@@ -197,16 +197,14 @@ struct exynos_drm_common_hdmi_pd {
197/** 197/**
198 * Platform Specific Structure for DRM based HDMI core. 198 * Platform Specific Structure for DRM based HDMI core.
199 * 199 *
200 * @timing: default video mode for initializing
201 * @default_win: default window layer number to be used for UI.
202 * @bpp: default bit per pixel.
203 * @is_v13: set if hdmi version 13 is. 200 * @is_v13: set if hdmi version 13 is.
201 * @cfg_hpd: function pointer to configure hdmi hotplug detection pin
202 * @get_hpd: function pointer to get value of hdmi hotplug detection pin
204 */ 203 */
205struct exynos_drm_hdmi_pdata { 204struct exynos_drm_hdmi_pdata {
206 struct fb_videomode timing; 205 bool is_v13;
207 unsigned int default_win; 206 void (*cfg_hpd)(bool external);
208 unsigned int bpp; 207 int (*get_hpd)(void);
209 unsigned int is_v13:1;
210}; 208};
211 209
212#endif /* __KERNEL__ */ 210#endif /* __KERNEL__ */