mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 13:11:40 +00:00
Staging: comedi: usbdux: release locks on error paths
Smatch complains about a couple error paths where the semaphores were not released. Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
880e96166c
commit
85678d5d27
@ -1465,6 +1465,7 @@ static int usbdux_ao_inttrig(struct comedi_device *dev,
|
||||
dev_err(&this_usbduxsub->interface->dev,
|
||||
"comedi%d: usbdux_ao_inttrig: invalid trignum\n",
|
||||
dev->minor);
|
||||
up(&this_usbduxsub->sem);
|
||||
return -EINVAL;
|
||||
}
|
||||
if (!(this_usbduxsub->ao_cmd_running)) {
|
||||
@ -2671,6 +2672,7 @@ static int usbdux_attach(struct comedi_device *dev, struct comedi_devconfig *it)
|
||||
if (ret < 0) {
|
||||
dev_err(&udev->interface->dev,
|
||||
"comedi%d: error alloc space for subdev\n", dev->minor);
|
||||
up(&udev->sem);
|
||||
up(&start_stop_sem);
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user