mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
staging/go7007: remove the BKL
There is nothing that the BKL can possibly protect here, so just remove it. Cc: Ross Cohen <rcohen@snurgle.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
27a16811ab
commit
8aea5882c5
2 changed files with 0 additions and 4 deletions
|
@ -1,7 +1,6 @@
|
|||
config VIDEO_GO7007
|
||||
tristate "WIS GO7007 MPEG encoder support"
|
||||
depends on VIDEO_DEV && PCI && I2C
|
||||
depends on BKL # please fix
|
||||
depends on SND
|
||||
select VIDEOBUF_DMA_SG
|
||||
depends on RC_CORE
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
#include <linux/module.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/smp_lock.h>
|
||||
#include <linux/usb.h>
|
||||
#include <dvb-usb.h>
|
||||
|
||||
|
@ -142,11 +141,9 @@ static void s2250loader_disconnect(struct usb_interface *interface)
|
|||
{
|
||||
pdevice_extension_t s;
|
||||
printk(KERN_INFO "s2250: disconnect\n");
|
||||
lock_kernel();
|
||||
s = usb_get_intfdata(interface);
|
||||
usb_set_intfdata(interface, NULL);
|
||||
kref_put(&(s->kref), s2250loader_delete);
|
||||
unlock_kernel();
|
||||
}
|
||||
|
||||
static const struct usb_device_id s2250loader_ids[] = {
|
||||
|
|
Loading…
Reference in a new issue