PCI hotplug: ibmphp-hpc: semaphore cleanup
authorThomas Gleixner <tglx@linutronix.de>
Tue, 7 Sep 2010 14:32:38 +0000 (14:32 +0000)
committerJesse Barnes <jbarnes@virtuousgeek.org>
Fri, 15 Oct 2010 20:09:48 +0000 (13:09 -0700)
Get rid of init_MUTEX[_LOCKED]() and use sema_init() instead.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
drivers/pci/hotplug/ibmphp_hpc.c

index 1aaf3f3..f59ed30 100644 (file)
@@ -133,8 +133,8 @@ void __init ibmphp_hpc_initvars (void)
        debug ("%s - Entry\n", __func__);
 
        mutex_init(&sem_hpcaccess);
-       init_MUTEX (&semOperations);
-       init_MUTEX_LOCKED (&sem_exit);
+       sema_init(&semOperations, 1);
+       sema_init(&sem_exit, 0);
        to_debug = 0;
 
        debug ("%s - Exit\n", __func__);