提交 5a37f138 编写于 作者: T Thomas Gleixner 提交者: Jesse Barnes

PCI hotplug: ibmphp-hpc: semaphore cleanup

Get rid of init_MUTEX[_LOCKED]() and use sema_init() instead.
Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
Signed-off-by: NJesse Barnes <jbarnes@virtuousgeek.org>
上级 50c1126e
...@@ -133,8 +133,8 @@ void __init ibmphp_hpc_initvars (void) ...@@ -133,8 +133,8 @@ void __init ibmphp_hpc_initvars (void)
debug ("%s - Entry\n", __func__); debug ("%s - Entry\n", __func__);
mutex_init(&sem_hpcaccess); mutex_init(&sem_hpcaccess);
init_MUTEX (&semOperations); sema_init(&semOperations, 1);
init_MUTEX_LOCKED (&sem_exit); sema_init(&sem_exit, 0);
to_debug = 0; to_debug = 0;
debug ("%s - Exit\n", __func__); debug ("%s - Exit\n", __func__);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册