| | Date | Tue, 07 Sep 2010 14:32:14 -0000 | | From | Thomas Gleixner <> | | Subject | [patch 06/30] hamradio: 6pack: semaphore cleanup |
| |
Get rid of init_MUTEX[_LOCKED]() and use sema_init() instead.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: David Miller <davem@davemloft.net> Cc: netdev@vger.kernel.org
--- drivers/net/hamradio/6pack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6/drivers/net/hamradio/6pack.c =================================================================== --- linux-2.6.orig/drivers/net/hamradio/6pack.c +++ linux-2.6/drivers/net/hamradio/6pack.c @@ -608,7 +608,7 @@ static int sixpack_open(struct tty_struc spin_lock_init(&sp->lock); atomic_set(&sp->refcnt, 1); - init_MUTEX_LOCKED(&sp->dead_sem); + sema_init(&sp->dead_sem, 0); /* !!! length of the buffers. MTU is IP MTU, not PACLEN! */
|