diff options
author | R Sundar <prosunofficial@gmail.com> | 2024-10-03 08:08:06 +0530 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2024-10-09 18:31:38 +0300 |
commit | 4c93ede2b0c73a7708f46a01669769d15d31e1d2 (patch) | |
tree | 1a68aec9796ba67de498e072dd148190fd0729b6 | |
parent | 3639fadc7e98a5b0aef399d7beef24b028fdf898 (diff) |
drm: Fix for kernel doc warningdrm-misc-next-2024-10-09
Added colon in kernel-doc comment to fix the warning.
./include/drm/drm_drv.h:372: warning: Incorrect use of kernel-doc format: * @fbdev_probe
./include/drm/drm_drv.h:435: warning: Function parameter or struct member 'fbdev_probe' not described in 'drm_driver'
Signed-off-by: R Sundar <prosunofficial@gmail.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20241003023806.17537-1-prosunofficial@gmail.com
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
-rw-r--r-- | include/drm/drm_drv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_drv.h b/include/drm/drm_drv.h index 36a606af4ba1..1bbbcb8e2d23 100644 --- a/include/drm/drm_drv.h +++ b/include/drm/drm_drv.h @@ -369,7 +369,7 @@ struct drm_driver { uint64_t *offset); /** - * @fbdev_probe + * @fbdev_probe: * * Allocates and initialize the fb_info structure for fbdev emulation. * Furthermore it also needs to allocate the DRM framebuffer used to |