Commit 7793a108 authored by Maxime Ripard's avatar Maxime Ripard

drm/fourcc: Fix the parameters name in the documentation

We introduced new functions in the commit bf39607c ("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: bf39607c ("drm/fourcc: Pass the format_info pointer to drm_format_plane_width/height")
Reported-by: default avatarkbuild test robot <lkp@intel.com>
Reviewed-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: default avatarMaxime Ripard <maxime.ripard@bootlin.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190521110906.15268-1-maxime.ripard@bootlin.com
parent 201713b6
...@@ -262,7 +262,7 @@ drm_format_info_is_yuv_sampling_444(const struct drm_format_info *info) ...@@ -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 * 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 * @width: width of the first plane
* @plane: plane index * @plane: plane index
* *
...@@ -284,7 +284,7 @@ int drm_format_info_plane_width(const struct drm_format_info *info, int width, ...@@ -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 * 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 * @height: height of the first plane
* @plane: plane index * @plane: plane index
* *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment