summaryrefslogtreecommitdiffstats
path: root/include/drm
diff options
context:
space:
mode:
authorMaxime Ripard2019-05-21 13:09:06 +0200
committerMaxime Ripard2019-05-21 16:58:05 +0200
commit7793a108964924dd2802ee8c5dff2e9f3a9cd54a (patch)
tree0904bf973b0e6afe8a96d5caa4eb538f75983f84 /include/drm
parentMAINTAINERS: drop Jerry as TTM maintainer (diff)
downloadkernel-qcow2-linux-7793a108964924dd2802ee8c5dff2e9f3a9cd54a.tar.gz
kernel-qcow2-linux-7793a108964924dd2802ee8c5dff2e9f3a9cd54a.tar.xz
kernel-qcow2-linux-7793a108964924dd2802ee8c5dff2e9f3a9cd54a.zip
drm/fourcc: Fix the parameters name in the documentation
We introduced new functions in the commit bf39607c1614 ("drm/fourcc: Pass the format_info pointer to drm_format_plane_width/height") based on previous ones but with a slightly different prototype. However, the documentation wasn't changed to reflect that change. Fixes: bf39607c1614 ("drm/fourcc: Pass the format_info pointer to drm_format_plane_width/height") Reported-by: kbuild test robot <lkp@intel.com> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com> Link: https://patchwork.freedesktop.org/patch/msgid/20190521110906.15268-1-maxime.ripard@bootlin.com
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/drm_fourcc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/drm/drm_fourcc.h b/include/drm/drm_fourcc.h
index 405466692bd2..306d1efeb5e0 100644
--- a/include/drm/drm_fourcc.h
+++ b/include/drm/drm_fourcc.h
@@ -262,7 +262,7 @@ drm_format_info_is_yuv_sampling_444(const struct drm_format_info *info)
/**
* drm_format_info_plane_width - width of the plane given the first plane
- * @format: pixel format info
+ * @info: pixel format info
* @width: width of the first plane
* @plane: plane index
*
@@ -284,7 +284,7 @@ int drm_format_info_plane_width(const struct drm_format_info *info, int width,
/**
* drm_format_info_plane_height - height of the plane given the first plane
- * @format: pixel format info
+ * @info: pixel format info
* @height: height of the first plane
* @plane: plane index
*