mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-15 01:44:52 +00:00
V4L/DVB (12143): radio-si470x: cleanups
- Remove user count log messages - Comments adopted to general style Signed-off-by: Tobias Lorenz <tobias.lorenz@gmx.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
721f59ed61
commit
9817dc3133
@ -1141,9 +1141,6 @@ static int si470x_fops_open(struct file *file)
|
||||
goto done;
|
||||
}
|
||||
|
||||
printk(KERN_INFO DRIVER_NAME
|
||||
": Opened radio (users now: %i)\n", radio->users);
|
||||
|
||||
if (radio->users == 1) {
|
||||
/* start radio */
|
||||
retval = si470x_start(radio);
|
||||
@ -1151,7 +1148,8 @@ static int si470x_fops_open(struct file *file)
|
||||
usb_autopm_put_interface(radio->intf);
|
||||
goto done;
|
||||
}
|
||||
/* Initialize interrupt URB. */
|
||||
|
||||
/* initialize interrupt urb */
|
||||
usb_fill_int_urb(radio->int_in_urb, radio->usbdev,
|
||||
usb_rcvintpipe(radio->usbdev,
|
||||
radio->int_in_endpoint->bEndpointAddress),
|
||||
@ -1171,7 +1169,6 @@ static int si470x_fops_open(struct file *file)
|
||||
radio->int_in_running = 0;
|
||||
usb_autopm_put_interface(radio->intf);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
done:
|
||||
@ -1196,11 +1193,8 @@ static int si470x_fops_release(struct file *file)
|
||||
|
||||
mutex_lock(&radio->disconnect_lock);
|
||||
radio->users--;
|
||||
printk(KERN_INFO DRIVER_NAME
|
||||
": Closed radio (remaining users:%i)\n", radio->users);
|
||||
if (radio->users == 0) {
|
||||
|
||||
/* Shutdown Interrupt handler */
|
||||
/* shutdown interrupt handler */
|
||||
if (radio->int_in_running) {
|
||||
radio->int_in_running = 0;
|
||||
if (radio->int_in_urb)
|
||||
|
Loading…
x
Reference in New Issue
Block a user