summaryrefslogtreecommitdiffstats
path: root/kernel/mutex.c
diff options
context:
space:
mode:
authorRandy Dunlap <randy.dunlap@oracle.com>2008-07-24 16:58:42 -0700
committerIngo Molnar <mingo@elte.hu>2008-07-28 18:12:36 +0200
commit0e241ffd306c0896bb9959be7faa4d4cfcb706d9 (patch)
tree220450d1e1aa58a65e8ed2cf655b4fa890f67d64 /kernel/mutex.c
parentc9272c4f9fbe2087beb3392f526dc5b19efaa56b (diff)
downloadlinux-0e241ffd306c0896bb9959be7faa4d4cfcb706d9.tar.gz
linux-0e241ffd306c0896bb9959be7faa4d4cfcb706d9.tar.xz
locking: fix mutex @key parameter kernel-doc notation
Fix @key parameter to mutex_init() and one of its callers. Warning(linux-2.6.26-git11//drivers/base/class.c:210): No description found for parameter 'key' Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Acked-by: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/mutex.c')
-rw-r--r--kernel/mutex.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/mutex.c b/kernel/mutex.c
index bcdc9ac8ef60..12c779dc65d4 100644
--- a/kernel/mutex.c
+++ b/kernel/mutex.c
@@ -34,6 +34,7 @@
/***
* mutex_init - initialize the mutex
* @lock: the mutex to be initialized
+ * @key: the lock_class_key for the class; used by mutex lock debugging
*
* Initialize the mutex to unlocked state.
*