diff options
author | Arthur Othieno <a.othieno@bluewin.ch> | 2005-10-30 23:03:14 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-10-31 01:37:27 (GMT) |
commit | 727a53bd535fe3bde644ac346db27456ad964083 (patch) | |
tree | 5dddcea38f3dd417311b1bcbf5692ad2aebe8c7e /include/asm-mips | |
parent | d269cdd0e22ef22f7f597ea917b1e8bdc6999fcb (diff) | |
download | linux-727a53bd535fe3bde644ac346db27456ad964083.tar.xz |
[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-mips')
-rw-r--r-- | include/asm-mips/semaphore.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/asm-mips/semaphore.h b/include/asm-mips/semaphore.h index c2c97de..3d6aa7c 100644 --- a/include/asm-mips/semaphore.h +++ b/include/asm-mips/semaphore.h @@ -45,9 +45,6 @@ struct semaphore { .wait = __WAIT_QUEUE_HEAD_INITIALIZER((name).wait) \ } -#define __MUTEX_INITIALIZER(name) \ - __SEMAPHORE_INITIALIZER(name, 1) - #define __DECLARE_SEMAPHORE_GENERIC(name, count) \ struct semaphore name = __SEMAPHORE_INITIALIZER(name,count) |