diff options
Diffstat (limited to 'include/linux/mutex.h')
-rw-r--r-- | include/linux/mutex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/mutex.h b/include/linux/mutex.h index 153274f78402..f25c13423bd4 100644 --- a/include/linux/mutex.h +++ b/include/linux/mutex.h | |||
@@ -138,9 +138,9 @@ extern void __mutex_init(struct mutex *lock, const char *name, | |||
138 | * mutex_is_locked - is the mutex locked | 138 | * mutex_is_locked - is the mutex locked |
139 | * @lock: the mutex to be queried | 139 | * @lock: the mutex to be queried |
140 | * | 140 | * |
141 | * Returns 1 if the mutex is locked, 0 if unlocked. | 141 | * Returns true if the mutex is locked, false if unlocked. |
142 | */ | 142 | */ |
143 | static inline int mutex_is_locked(struct mutex *lock) | 143 | static inline bool mutex_is_locked(struct mutex *lock) |
144 | { | 144 | { |
145 | /* | 145 | /* |
146 | * XXX think about spin_is_locked | 146 | * XXX think about spin_is_locked |