[PATCH 09/12] drm: document and cleanup drm_mode_config_funcs

Jesse Barnes jbarnes at virtuousgeek.org
Mon Nov 7 12:03:20 PST 2011


Just fix the wrapping mostly.

Signed-off-by: Jesse Barnes <jbarnes at virtuousgeek.org>
---
 include/drm/drm_crtc.h |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h
index b33713b..a0c7dc6 100644
--- a/include/drm/drm_crtc.h
+++ b/include/drm/drm_crtc.h
@@ -600,10 +600,17 @@ struct drm_mode_set {
 };
 
 /**
- * struct drm_mode_config_funcs - configure CRTCs for a given screen layout
+ * struct drm_mode_config_funcs - basic driver provided mode setting functions
+ * @fb_create: create a new framebuffer object
+ * @output_poll_changed: function to handle output configuration changes
+ *
+ * Some global (i.e. not per-CRTC, connector, etc) mode setting functions that
+ * involve drivers.
  */
 struct drm_mode_config_funcs {
-	struct drm_framebuffer *(*fb_create)(struct drm_device *dev, struct drm_file *file_priv, struct drm_mode_fb_cmd *mode_cmd);
+	struct drm_framebuffer *(*fb_create)(struct drm_device *dev,
+					     struct drm_file *file_priv,
+					     struct drm_mode_fb_cmd *mode_cmd);
 	void (*output_poll_changed)(struct drm_device *dev);
 };
 
-- 
1.7.4.1



More information about the dri-devel mailing list