diff options
author | Randy Dunlap <[email protected]> | 2022-04-03 16:10:40 -0700 |
---|---|---|
committer | Simon Ser <[email protected]> | 2022-04-04 18:00:19 +0200 |
commit | 353520811fe70fb720a29ffd8833778d88ae9dee (patch) | |
tree | 5aefa38aab777e0d31e5dc95376c7b710f3c4eaf | |
parent | b892d39199df8daa2ce6e65a111f5a15be58ae5b (diff) |
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 <[email protected]>
Cc: David Airlie <[email protected]>
Cc: Daniel Vetter <[email protected]>
Cc: [email protected]
Reviewed-by: Simon Ser <[email protected]>
Signed-off-by: Simon Ser <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | include/drm/drm_file.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_file.h b/include/drm/drm_file.h index a3acb7ac3550..e0a73a1e2df7 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. */ |