From: Randy Dunlap Date: Sun, 3 Apr 2022 23:10:40 +0000 (-0700) Subject: drm: fix a kernel-doc typo X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=353520811fe70fb720a29ffd8833778d88ae9dee;p=linux.git drm: fix a kernel-doc typo Fix a build warning from 'make htmldocs' by correcting the lock name in the kernel-doc comment. include/drm/drm_file.h:369: warning: Function parameter or member 'master_lookup_lock' not described in 'drm_file' Signed-off-by: Randy Dunlap Cc: David Airlie Cc: Daniel Vetter Cc: dri-devel@lists.freedesktop.org Reviewed-by: Simon Ser Signed-off-by: Simon Ser Link: https://patchwork.freedesktop.org/patch/msgid/20220403231040.18540-1-rdunlap@infradead.org --- diff --git a/include/drm/drm_file.h b/include/drm/drm_file.h index a3acb7ac35504..e0a73a1e2df74 100644 --- a/include/drm/drm_file.h +++ b/include/drm/drm_file.h @@ -248,7 +248,7 @@ struct drm_file { */ struct drm_master *master; - /** @master_lock: Serializes @master. */ + /** @master_lookup_lock: Serializes @master. */ spinlock_t master_lookup_lock; /** @pid: Process that opened this file. */