diff options
-rw-r--r-- | include/asm-xtensa/semaphore.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-xtensa/semaphore.h b/include/asm-xtensa/semaphore.h index 2a10e193b929..f10c3487cd4c 100644 --- a/include/asm-xtensa/semaphore.h +++ b/include/asm-xtensa/semaphore.h | |||
@@ -38,6 +38,7 @@ struct semaphore { | |||
38 | static inline void sema_init (struct semaphore *sem, int val) | 38 | static inline void sema_init (struct semaphore *sem, int val) |
39 | { | 39 | { |
40 | atomic_set(&sem->count, val); | 40 | atomic_set(&sem->count, val); |
41 | sem->sleepers = 0; | ||
41 | init_waitqueue_head(&sem->wait); | 42 | init_waitqueue_head(&sem->wait); |
42 | } | 43 | } |
43 | 44 | ||