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>
#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>
int retval=0;
int errn=0;
- lock_kernel();
mutex_lock(&mdc800->io_lock);
if (mdc800->state == NOT_CONNECTED)
error_out:
mutex_unlock(&mdc800->io_lock);
- unlock_kernel();
return errn;
}