diff options
author | Louis Chauvet <louis.chauvet@bootlin.com> | 2025-02-07 18:35:22 +0100 |
---|---|---|
committer | Louis Chauvet <louis.chauvet@bootlin.com> | 2025-02-20 15:02:09 +0100 |
commit | ddd147d91d509c9d9fc6159efc5b56f61440bb9a (patch) | |
tree | 12938be14b75a6a295662a84e1825ec532ff77ab | |
parent | e82e1a0c22d841f379b1c768469dcdaae650e443 (diff) |
drm: writeback: Fix kernel doc name
During the creation of drmm_ variants for writeback connector, one
function was renamed, but not the kernel doc.
To remove the warning, use the proper name in kernel doc.
Fixes: 135d8fc7af44 ("drm: writeback: Create an helper for drm_writeback_connector initialization")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Closes: https://lore.kernel.org/all/20250207142201.550ce870@canb.auug.org.au/
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20250207-b4-fix-warning-v1-1-b4964beb60a3@bootlin.com
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
-rw-r--r-- | drivers/gpu/drm/drm_writeback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_writeback.c b/drivers/gpu/drm/drm_writeback.c index f139b49af4c9..edbeab88ff2b 100644 --- a/drivers/gpu/drm/drm_writeback.c +++ b/drivers/gpu/drm/drm_writeback.c @@ -213,7 +213,7 @@ static void delete_writeback_properties(struct drm_device *dev) } /** - * drm_writeback_connector_init_with_encoder - Initialize a writeback connector with + * __drm_writeback_connector_init - Initialize a writeback connector with * a custom encoder * * @dev: DRM device |