diff mbox series

drm: drm/drm_file.h: fix a kernel-doc typo

Message ID 20211219173728.9806-1-rdunlap@infradead.org (mailing list archive)
State New, archived
Headers show
Series drm: drm/drm_file.h: fix a kernel-doc typo | expand

Commit Message

Randy Dunlap Dec. 19, 2021, 5:37 p.m. UTC
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 <rdunlap@infradead.org>
Cc: David Airlie <airlied@linux.ie>
Cc: Daniel Vetter <daniel@ffwll.ch>
---
 include/drm/drm_file.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Ser Dec. 19, 2021, 5:39 p.m. UTC | #1
Reviewed-by: Simon Ser <contact@emersion.fr>
diff mbox series

Patch

--- linux-next-20211217.orig/include/drm/drm_file.h
+++ linux-next-20211217/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. */