Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5a207b43 authored by Oliver Neukum's avatar Oliver Neukum Committed by Greg Kroah-Hartman
Browse files

USB: BKL removal: mdc800



BKL not needed at all. Removed without replacement.

Signed-off-by: default avatarOliver Neukum <oliver@neukum.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 94015f6e
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -96,7 +96,6 @@
#include <linux/module.h>
#include <linux/wait.h>
#include <linux/mutex.h>
#include <linux/smp_lock.h>

#include <linux/usb.h>
#include <linux/fs.h>
@@ -623,7 +622,6 @@ static int mdc800_device_open (struct inode* inode, struct file *file)
	int retval=0;
	int errn=0;

	lock_kernel();
	mutex_lock(&mdc800->io_lock);
	
	if (mdc800->state == NOT_CONNECTED)
@@ -662,7 +660,6 @@ static int mdc800_device_open (struct inode* inode, struct file *file)

error_out:
	mutex_unlock(&mdc800->io_lock);
	unlock_kernel();
	return errn;
}