[patch 08/30] net: ppp_async: semaphore cleanup

From: Thomas Gleixner
Date: Tue Sep 07 2010 - 10:33:37 EST


Get rid of init_MUTEX[_LOCKED]() and use sema_init() instead.

Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
Cc: David Miller <davem@xxxxxxxxxxxxx>
Cc: netdev@xxxxxxxxxxxxxxx

---
drivers/net/ppp_async.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Index: linux-2.6/drivers/net/ppp_async.c
===================================================================
--- linux-2.6.orig/drivers/net/ppp_async.c
+++ linux-2.6/drivers/net/ppp_async.c
@@ -184,7 +184,7 @@ ppp_asynctty_open(struct tty_struct *tty
tasklet_init(&ap->tsk, ppp_async_process, (unsigned long) ap);

atomic_set(&ap->refcnt, 1);
- init_MUTEX_LOCKED(&ap->dead_sem);
+ sema_init(&ap->dead_sem, 0);

ap->chan.private = ap;
ap->chan.ops = &async_ops;


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/