Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 173892
b: refs/heads/master
c: 8a7cd16
h: refs/heads/master
v: v3
  • Loading branch information
David Ellingsworth authored and Mauro Carvalho Chehab committed Dec 5, 2009
1 parent 4b36d12 commit 80c7762
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 34 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4e3616576e9e65d53f9381b9f334257299c7262e
refs/heads/master: 8a7cd16f1fa31ef6db9cfc16b1eb0356566e974d
35 changes: 2 additions & 33 deletions trunk/drivers/media/radio/radio-mr800.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ struct amradio_device {
struct mutex lock; /* buffer locking */
int curfreq;
int stereo;
int users;
int muted;
};

Expand Down Expand Up @@ -493,26 +492,6 @@ static int usb_amradio_open(struct file *file)
}

file->private_data = radio;
radio->users = 1;
radio->muted = 1;

retval = amradio_set_mute(radio, AMRADIO_START);
if (retval < 0) {
amradio_dev_warn(&radio->videodev.dev,
"radio did not start up properly\n");
radio->users = 0;
goto unlock;
}

retval = amradio_set_stereo(radio, WANT_STEREO);
if (retval < 0)
amradio_dev_warn(&radio->videodev.dev,
"set stereo failed\n");

retval = amradio_setfreq(radio, radio->curfreq);
if (retval < 0)
amradio_dev_warn(&radio->videodev.dev,
"set frequency failed\n");

unlock:
mutex_unlock(&radio->lock);
Expand All @@ -527,19 +506,9 @@ static int usb_amradio_close(struct file *file)

mutex_lock(&radio->lock);

if (!radio->usbdev) {
if (!radio->usbdev)
retval = -EIO;
goto unlock;
}

radio->users = 0;

retval = amradio_set_mute(radio, AMRADIO_STOP);
if (retval < 0)
amradio_dev_warn(&radio->videodev.dev,
"amradio_stop failed\n");

unlock:
mutex_unlock(&radio->lock);
return retval;
}
Expand Down Expand Up @@ -670,10 +639,10 @@ static int usb_amradio_probe(struct usb_interface *intf,
radio->videodev.ioctl_ops = &usb_amradio_ioctl_ops;
radio->videodev.release = usb_amradio_video_device_release;

radio->users = 0;
radio->usbdev = interface_to_usbdev(intf);
radio->curfreq = 95.16 * FREQ_MUL;
radio->stereo = -1;
radio->muted = 1;

mutex_init(&radio->lock);

Expand Down

0 comments on commit 80c7762

Please sign in to comment.