aboutsummaryrefslogtreecommitdiffstats
path: root/include/drm/drm_device.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/drm/drm_device.h')
-rw-r--r--include/drm/drm_device.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/drm/drm_device.h b/include/drm/drm_device.h
index e21af87a2f3c..7c4fa32f3fc6 100644
--- a/include/drm/drm_device.h
+++ b/include/drm/drm_device.h
@@ -17,6 +17,7 @@ struct drm_vblank_crtc;
17struct drm_sg_mem; 17struct drm_sg_mem;
18struct drm_local_map; 18struct drm_local_map;
19struct drm_vma_offset_manager; 19struct drm_vma_offset_manager;
20struct drm_fb_helper;
20 21
21struct inode; 22struct inode;
22 23
@@ -185,6 +186,14 @@ struct drm_device {
185 struct drm_vma_offset_manager *vma_offset_manager; 186 struct drm_vma_offset_manager *vma_offset_manager;
186 /*@} */ 187 /*@} */
187 int switch_power_state; 188 int switch_power_state;
189
190 /**
191 * @fb_helper:
192 *
193 * Pointer to the fbdev emulation structure.
194 * Set by drm_fb_helper_init() and cleared by drm_fb_helper_fini().
195 */
196 struct drm_fb_helper *fb_helper;
188}; 197};
189 198
190#endif 199#endif