diff options
| author | Arthur Othieno <a.othieno@bluewin.ch> | 2005-10-30 18:03:14 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-10-30 20:37:27 -0500 |
| commit | 727a53bd535fe3bde644ac346db27456ad964083 (patch) | |
| tree | 5dddcea38f3dd417311b1bcbf5692ad2aebe8c7e /include/asm-xtensa | |
| parent | d269cdd0e22ef22f7f597ea917b1e8bdc6999fcb (diff) | |
[PATCH] semaphore: Remove __MUTEX_INITIALIZER()
__MUTEX_INITIALIZER() has no users, and equates to the more commonly used
DECLARE_MUTEX(), thus making it pretty much redundant. Remove it for good.
Signed-off-by: Arthur Othieno <a.othieno@bluewin.ch>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-xtensa')
| -rw-r--r-- | include/asm-xtensa/semaphore.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/asm-xtensa/semaphore.h b/include/asm-xtensa/semaphore.h index 09e89ab3eb..2a10e193b9 100644 --- a/include/asm-xtensa/semaphore.h +++ b/include/asm-xtensa/semaphore.h | |||
| @@ -29,9 +29,6 @@ struct semaphore { | |||
| 29 | .wait = __WAIT_QUEUE_HEAD_INITIALIZER((name).wait) \ | 29 | .wait = __WAIT_QUEUE_HEAD_INITIALIZER((name).wait) \ |
| 30 | } | 30 | } |
| 31 | 31 | ||
| 32 | #define __MUTEX_INITIALIZER(name) \ | ||
| 33 | __SEMAPHORE_INITIALIZER(name, 1) | ||
| 34 | |||
| 35 | #define __DECLARE_SEMAPHORE_GENERIC(name,count) \ | 32 | #define __DECLARE_SEMAPHORE_GENERIC(name,count) \ |
| 36 | struct semaphore name = __SEMAPHORE_INITIALIZER(name,count) | 33 | struct semaphore name = __SEMAPHORE_INITIALIZER(name,count) |
| 37 | 34 | ||
