Message ID | 20240419152307.13099-1-prosunofficial@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Fix for kernel doc warning [linux-next] | expand |
diff --git a/include/drm/drm_mode_config.h b/include/drm/drm_mode_config.h index 06d7777a881f..8de3c9a5f61b 100644 --- a/include/drm/drm_mode_config.h +++ b/include/drm/drm_mode_config.h @@ -953,7 +953,7 @@ struct drm_mode_config { struct drm_property *modifiers_property; /** - * @size_hints_propertty: Plane SIZE_HINTS property. + * @size_hints_property: Plane SIZE_HINTS property. */ struct drm_property *size_hints_property;
Fixed the kernel doc warning due to typo error in field name. ./include/drm/drm_mode_config.h:973: warning: Function parameter or struct member 'size_hints_property' not described in 'drm_mode_config' ./include/drm/drm_mode_config.h:973: warning: Excess struct member 'size_hints_propertty' description in 'drm_mode_config' Signed-off-by: sundar <prosunofficial@gmail.com> --- include/drm/drm_mode_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)