]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - drivers/telephony/phonedev.c
phonedev: cdev lock_kernel() pushdown
[linux-2.6-omap-h63xx.git] / drivers / telephony / phonedev.c
index bcea8d9b718ce782da7f1e3fdb20d4d278d9d00e..4d74ba36c3a12b0d8acd19cd7115b154522f862b 100644 (file)
@@ -23,6 +23,7 @@
 #include <linux/errno.h>
 #include <linux/phonedev.h>
 #include <linux/init.h>
+#include <linux/smp_lock.h>
 #include <asm/uaccess.h>
 #include <asm/system.h>
 
@@ -53,6 +54,7 @@ static int phone_open(struct inode *inode, struct file *file)
        if (minor >= PHONE_NUM_DEVICES)
                return -ENODEV;
 
+       lock_kernel();
        mutex_lock(&phone_lock);
        p = phone_device[minor];
        if (p)
@@ -79,6 +81,7 @@ static int phone_open(struct inode *inode, struct file *file)
        fops_put(old_fops);
 end:
        mutex_unlock(&phone_lock);
+       unlock_kernel();
        return err;
 }