aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r--drivers/bluetooth/hci_vhci.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/bluetooth/hci_vhci.c b/drivers/bluetooth/hci_vhci.c
index 7734bc9af3ca..d97700aa54a9 100644
--- a/drivers/bluetooth/hci_vhci.c
+++ b/drivers/bluetooth/hci_vhci.c
@@ -318,18 +318,21 @@ static int vhci_release(struct inode *inode, struct file *file)
318static int vhci_fasync(int fd, struct file *file, int on) 318static int vhci_fasync(int fd, struct file *file, int on)
319{ 319{
320 struct vhci_data *data = file->private_data; 320 struct vhci_data *data = file->private_data;
321 int err; 321 int err = 0;
322 322
323 lock_kernel();
323 err = fasync_helper(fd, file, on, &data->fasync); 324 err = fasync_helper(fd, file, on, &data->fasync);
324 if (err < 0) 325 if (err < 0)
325 return err; 326 goto out;
326 327
327 if (on) 328 if (on)
328 data->flags |= VHCI_FASYNC; 329 data->flags |= VHCI_FASYNC;
329 else 330 else
330 data->flags &= ~VHCI_FASYNC; 331 data->flags &= ~VHCI_FASYNC;
331 332
332 return 0; 333out:
334 unlock_kernel();
335 return err;
333} 336}
334 337
335static const struct file_operations vhci_fops = { 338static const struct file_operations vhci_fops = {