diff options
author | 2024-10-09 17:03:00 +0300 | |
---|---|---|
committer | 2024-10-09 16:30:37 +0200 | |
commit | c3e91446a3580353672e965165ab37db2bf6a757 (patch) | |
tree | 2c6cb54d1972041f0dced6ce6fa697e54343c35d | |
parent | drm/writeback: remove pointless enable_signaling implementation (diff) | |
download | wireguard-linux-c3e91446a3580353672e965165ab37db2bf6a757.tar.xz wireguard-linux-c3e91446a3580353672e965165ab37db2bf6a757.zip |
drm/file: fix client_name_lock kernel-doc warning
It's client_name_lock, not name_lock. Also unify style while at it.
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Closes: https://lore.kernel.org/r/20241009172650.29169e6f@canb.auug.org.au
Fixes: 56c594d8df64 ("drm: add DRM_SET_CLIENT_NAME ioctl")
Reviewed-by: Dmitry Osipenko <dmitry.osipenko@collabora.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20241009140300.1980746-1-jani.nikula@intel.com
Signed-off-by: Christian König <christian.koenig@amd.com>
Diffstat (limited to '')
-rw-r--r-- | include/drm/drm_file.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/drm/drm_file.h b/include/drm/drm_file.h index d4f1c115ea0f..f0ef32e9fa5e 100644 --- a/include/drm/drm_file.h +++ b/include/drm/drm_file.h @@ -395,7 +395,10 @@ struct drm_file { * Userspace-provided name; useful for accounting and debugging. */ const char *client_name; - /** @name_lock: Protects @client_name. */ + + /** + * @client_name_lock: Protects @client_name. + */ struct mutex client_name_lock; }; |