drm: rcar-du: Document the rcar_du_plane_state structure
authorLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Tue, 28 Apr 2015 21:12:40 +0000 (00:12 +0300)
committerLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Mon, 25 May 2015 12:34:10 +0000 (15:34 +0300)
Document the structure fields using kerneldoc.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
drivers/gpu/drm/rcar-du/rcar_du_plane.h

index abff0ebeb195f4cba972d8e00237cdf496e89108..2beb67acdb3857ffa6dafdac6278dd64cb9814cf 100644 (file)
@@ -46,11 +46,20 @@ struct rcar_du_planes {
        struct drm_property *zpos;
 };
 
+/**
+ * struct rcar_du_plane_state - Driver-specific plane state
+ * @state: base DRM plane state
+ * @format: information about the pixel format used by the plane
+ * @hwindex: 0-based hardware plane index, -1 means unused
+ * @alpha: value of the plane alpha property
+ * @colorkey: value of the plane colorkey property
+ * @zpos: value of the plane zpos property
+ */
 struct rcar_du_plane_state {
        struct drm_plane_state state;
 
        const struct rcar_du_format_info *format;
-       int hwindex;            /* 0-based, -1 means unused */
+       int hwindex;
 
        unsigned int alpha;
        unsigned int colorkey;