diff options
-rw-r--r-- | drivers/base/class.c | 1 | ||||
-rw-r--r-- | kernel/mutex.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/base/class.c b/drivers/base/class.c index 839d27cecb36..5667c2f02c51 100644 --- a/drivers/base/class.c +++ b/drivers/base/class.c | |||
@@ -198,6 +198,7 @@ static void class_create_release(struct class *cls) | |||
198 | * class_create - create a struct class structure | 198 | * class_create - create a struct class structure |
199 | * @owner: pointer to the module that is to "own" this struct class | 199 | * @owner: pointer to the module that is to "own" this struct class |
200 | * @name: pointer to a string for the name of this class. | 200 | * @name: pointer to a string for the name of this class. |
201 | * @key: the lock_class_key for this class; used by mutex lock debugging | ||
201 | * | 202 | * |
202 | * This is used to create a struct class pointer that can then be used | 203 | * This is used to create a struct class pointer that can then be used |
203 | * in calls to device_create(). | 204 | * in calls to device_create(). |
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 @@ | |||
34 | /*** | 34 | /*** |
35 | * mutex_init - initialize the mutex | 35 | * mutex_init - initialize the mutex |
36 | * @lock: the mutex to be initialized | 36 | * @lock: the mutex to be initialized |
37 | * @key: the lock_class_key for the class; used by mutex lock debugging | ||
37 | * | 38 | * |
38 | * Initialize the mutex to unlocked state. | 39 | * Initialize the mutex to unlocked state. |
39 | * | 40 | * |