summaryrefslogtreecommitdiffstats
path: root/include/drm
diff options
context:
space:
mode:
authorLuca Ceresoli <luca@lucaceresoli.net>2019-03-13 11:35:37 -0400
committerDaniel Vetter <daniel.vetter@ffwll.ch>2019-03-25 04:33:42 -0400
commit60e6ecfb616f0d2b927ce2e47dbd0e50c8c9253e (patch)
treee8842096c398b7144b79727603c3497f8d76bcfd /include/drm
parent825d1b579d0b080b51431dbd282a6629075e1d9c (diff)
drm/doc: fix missing verb
Add a missing "be". While there, also fix the syntax for struct drm_device. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: https://patchwork.freedesktop.org/patch/msgid/20190313153537.22654-2-luca@lucaceresoli.net
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/drm_drv.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/drm/drm_drv.h b/include/drm/drm_drv.h
index 3224abb1535c..5cc7f728ec73 100644
--- a/include/drm/drm_drv.h
+++ b/include/drm/drm_drv.h
@@ -152,9 +152,9 @@ enum drm_driver_feature {
152/** 152/**
153 * struct drm_driver - DRM driver structure 153 * struct drm_driver - DRM driver structure
154 * 154 *
155 * This structure represent the common code for a family of cards. There will 155 * This structure represent the common code for a family of cards. There will be
156 * one drm_device for each card present in this family. It contains lots of 156 * one &struct drm_device for each card present in this family. It contains lots
157 * vfunc entries, and a pile of those probably should be moved to more 157 * of vfunc entries, and a pile of those probably should be moved to more
158 * appropriate places like &drm_mode_config_funcs or into a new operations 158 * appropriate places like &drm_mode_config_funcs or into a new operations
159 * structure for GEM drivers. 159 * structure for GEM drivers.
160 */ 160 */