Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 173895
b: refs/heads/master
c: d8970e5
h: refs/heads/master
i:
  173893: 12724c1
  173891: 4b36d12
  173887: 07811ff
v: v3
  • Loading branch information
David Ellingsworth authored and Mauro Carvalho Chehab committed Dec 5, 2009
1 parent 5cd4810 commit 7bd7d33
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 6 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: 30dd4508b97155a3f826f877d5750d8888bc3183
refs/heads/master: d8970e5fd9eace437bc2f1aaff1c2a05fb3448ea
33 changes: 28 additions & 5 deletions trunk/drivers/media/radio/radio-mr800.c
Original file line number Diff line number Diff line change
Expand Up @@ -574,9 +574,12 @@ static int usb_amradio_suspend(struct usb_interface *intf, pm_message_t message)

mutex_lock(&radio->lock);

retval = amradio_set_mute(radio, AMRADIO_STOP);
if (retval < 0)
dev_warn(&intf->dev, "amradio_stop failed\n");
if (!radio->muted && radio->initialized) {
retval = amradio_set_mute(radio, AMRADIO_STOP);
if (retval < 0)
dev_warn(&intf->dev, "amradio_stop failed\n");
radio->muted = 0;
}

dev_info(&intf->dev, "going into suspend..\n");

Expand All @@ -592,10 +595,30 @@ static int usb_amradio_resume(struct usb_interface *intf)

mutex_lock(&radio->lock);

retval = amradio_set_mute(radio, AMRADIO_START);
if (unlikely(!radio->initialized))
goto unlock;

if (radio->stereo)
retval = amradio_set_stereo(radio, WANT_STEREO);
else
retval = amradio_set_stereo(radio, WANT_MONO);

if (retval < 0)
dev_warn(&intf->dev, "amradio_start failed\n");
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");

if (!radio->muted) {
retval = amradio_set_mute(radio, AMRADIO_START);
if (retval < 0)
dev_warn(&radio->videodev.dev,
"amradio_start failed\n");
}

unlock:
dev_info(&intf->dev, "coming out of suspend..\n");

mutex_unlock(&radio->lock);
Expand Down

0 comments on commit 7bd7d33

Please sign in to comment.