Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 173893
b: refs/heads/master
c: 502d501
h: refs/heads/master
i:
  173891: 4b36d12
v: v3
  • Loading branch information
David Ellingsworth authored and Mauro Carvalho Chehab committed Dec 5, 2009
1 parent 80c7762 commit 12724c1
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 3 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: 8a7cd16f1fa31ef6db9cfc16b1eb0356566e974d
refs/heads/master: 502d50166cdef6cc8f63ab8c6ab35694ee39f608
34 changes: 32 additions & 2 deletions trunk/drivers/media/radio/radio-mr800.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ MODULE_LICENSE("GPL");
#define amradio_dev_warn(dev, fmt, arg...) \
dev_warn(dev, MR800_DRIVER_NAME " - " fmt, ##arg)

#define amradio_dev_err(dev, fmt, arg...) \
dev_err(dev, MR800_DRIVER_NAME " - " fmt, ##arg)

/* Probably USB_TIMEOUT should be modified in module parameter */
#define BUFFER_LENGTH 8
#define USB_TIMEOUT 500
Expand Down Expand Up @@ -137,6 +140,7 @@ struct amradio_device {
int curfreq;
int stereo;
int muted;
int initialized;
};

#define vdev_to_amradio(r) container_of(r, struct amradio_device, videodev)
Expand Down Expand Up @@ -478,6 +482,31 @@ static int vidioc_s_input(struct file *filp, void *priv, unsigned int i)
return 0;
}

static int usb_amradio_init(struct amradio_device *radio)
{
int retval;

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

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

radio->initialized = 1;
goto out;

out_err:
amradio_dev_err(&radio->videodev.dev, "initialization failed\n");
out:
return retval;
}

/* open device - amradio_start() and amradio_setfreq() */
static int usb_amradio_open(struct file *file)
{
Expand All @@ -493,6 +522,9 @@ static int usb_amradio_open(struct file *file)

file->private_data = radio;

if (unlikely(!radio->initialized))
retval = usb_amradio_init(radio);

unlock:
mutex_unlock(&radio->lock);
return retval;
Expand Down Expand Up @@ -641,8 +673,6 @@ static int usb_amradio_probe(struct usb_interface *intf,

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 12724c1

Please sign in to comment.