USB: BKL removal: usbtmc
authorOliver Neukum <oliver@neukum.org>
Thu, 14 Jan 2010 15:08:42 +0000 (16:08 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 2 Mar 2010 22:54:27 +0000 (14:54 -0800)
BKL not needed at all. Removed without replacement.

Signed-off-by: Oliver Neukum <oliver@neukum.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/class/usbtmc.c

index 426bfc7..8588c09 100644 (file)
@@ -26,7 +26,6 @@
 #include <linux/uaccess.h>
 #include <linux/kref.h>
 #include <linux/mutex.h>
-#include <linux/smp_lock.h>
 #include <linux/usb.h>
 #include <linux/usb/tmc.h>
 
@@ -114,7 +113,6 @@ static int usbtmc_open(struct inode *inode, struct file *filp)
        struct usbtmc_device_data *data;
        int retval = 0;
 
-       lock_kernel();
        intf = usb_find_interface(&usbtmc_driver, iminor(inode));
        if (!intf) {
                printk(KERN_ERR KBUILD_MODNAME
@@ -130,7 +128,6 @@ static int usbtmc_open(struct inode *inode, struct file *filp)
        filp->private_data = data;
 
 exit:
-       unlock_kernel();
        return retval;
 }