Revert to Fedora kernel-2.6.17-1.2187_FC5 patched with vs2.0.2.1; there are too many...
[linux-2.6.git] / arch / powerpc / platforms / powermac / pfunc_core.c
index b117adb..f08173b 100644 (file)
@@ -5,6 +5,7 @@
  * FIXME: LOCKING !!!
  */
 
+#include <linux/config.h>
 #include <linux/init.h>
 #include <linux/delay.h>
 #include <linux/kernel.h>
@@ -545,7 +546,7 @@ struct pmf_device {
 };
 
 static LIST_HEAD(pmf_devices);
-static DEFINE_SPINLOCK(pmf_lock);
+static spinlock_t pmf_lock = SPIN_LOCK_UNLOCKED;
 static DEFINE_MUTEX(pmf_irq_mutex);
 
 static void pmf_release_device(struct kref *kref)
@@ -870,17 +871,10 @@ int pmf_register_irq_client(struct device_node *target,
        spin_unlock_irqrestore(&pmf_lock, flags);
        if (func == NULL)
                return -ENODEV;
-
-       /* guard against manipulations of list */
        mutex_lock(&pmf_irq_mutex);
        if (list_empty(&func->irq_clients))
                func->dev->handlers->irq_enable(func);
-
-       /* guard against pmf_do_irq while changing list */
-       spin_lock_irqsave(&pmf_lock, flags);
        list_add(&client->link, &func->irq_clients);
-       spin_unlock_irqrestore(&pmf_lock, flags);
-
        client->func = func;
        mutex_unlock(&pmf_irq_mutex);
 
@@ -891,19 +885,12 @@ EXPORT_SYMBOL_GPL(pmf_register_irq_client);
 void pmf_unregister_irq_client(struct pmf_irq_client *client)
 {
        struct pmf_function *func = client->func;
-       unsigned long flags;
 
        BUG_ON(func == NULL);
 
-       /* guard against manipulations of list */
        mutex_lock(&pmf_irq_mutex);
        client->func = NULL;
-
-       /* guard against pmf_do_irq while changing list */
-       spin_lock_irqsave(&pmf_lock, flags);
        list_del(&client->link);
-       spin_unlock_irqrestore(&pmf_lock, flags);
-
        if (list_empty(&func->irq_clients))
                func->dev->handlers->irq_disable(func);
        mutex_unlock(&pmf_irq_mutex);