Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 330952
b: refs/heads/master
c: d1f280d
h: refs/heads/master
v: v3
  • Loading branch information
Hans de Goede authored and Mauro Carvalho Chehab committed Sep 13, 2012
1 parent f271fb0 commit ebe0b45
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 2 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: d7aab0bf9dbd658c25e815aa034042aed6801f3e
refs/heads/master: d1f280d615a0f0b723dac5a2cd3f2f7f18bca4fa
39 changes: 39 additions & 0 deletions trunk/drivers/media/radio/radio-shark2.c
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ static int shark_register_leds(struct shark_device *shark, struct device *dev)
{
int i, retval;

atomic_set(&shark->brightness[BLUE_LED], 127);
INIT_WORK(&shark->led_work, shark_led_work);
for (i = 0; i < NO_LEDS; i++) {
shark->leds[i] = shark_led_templates[i];
Expand All @@ -235,6 +236,16 @@ static void shark_unregister_leds(struct shark_device *shark)

cancel_work_sync(&shark->led_work);
}

static void shark_resume_leds(struct shark_device *shark)
{
int i;

for (i = 0; i < NO_LEDS; i++)
set_bit(i, &shark->brightness_new);

schedule_work(&shark->led_work);
}
#else
static int shark_register_leds(struct shark_device *shark, struct device *dev)
{
Expand All @@ -243,6 +254,7 @@ static int shark_register_leds(struct shark_device *shark, struct device *dev)
return 0;
}
static inline void shark_unregister_leds(struct shark_device *shark) { }
static inline void shark_resume_leds(struct shark_device *shark) { }
#endif

static void usb_shark_disconnect(struct usb_interface *intf)
Expand Down Expand Up @@ -327,6 +339,28 @@ static int usb_shark_probe(struct usb_interface *intf,
return retval;
}

#ifdef CONFIG_PM
int usb_shark_suspend(struct usb_interface *intf, pm_message_t message)
{
return 0;
}

int usb_shark_resume(struct usb_interface *intf)
{
struct v4l2_device *v4l2_dev = usb_get_intfdata(intf);
struct shark_device *shark = v4l2_dev_to_shark(v4l2_dev);
int ret;

mutex_lock(&shark->tea.mutex);
ret = radio_tea5777_set_freq(&shark->tea);
mutex_unlock(&shark->tea.mutex);

shark_resume_leds(shark);

return ret;
}
#endif

/* Specify the bcdDevice value, as the radioSHARK and radioSHARK2 share ids */
static struct usb_device_id usb_shark_device_table[] = {
{ .match_flags = USB_DEVICE_ID_MATCH_DEVICE_AND_VERSION |
Expand All @@ -346,5 +380,10 @@ static struct usb_driver usb_shark_driver = {
.probe = usb_shark_probe,
.disconnect = usb_shark_disconnect,
.id_table = usb_shark_device_table,
#ifdef CONFIG_PM
.suspend = usb_shark_suspend,
.resume = usb_shark_resume,
.reset_resume = usb_shark_resume,
#endif
};
module_usb_driver(usb_shark_driver);
2 changes: 1 addition & 1 deletion trunk/drivers/media/radio/radio-tea5777.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ static u32 tea5777_freq_to_v4l2_freq(struct radio_tea5777 *tea, u32 freq)
return 0; /* Never reached */
}

static int radio_tea5777_set_freq(struct radio_tea5777 *tea)
int radio_tea5777_set_freq(struct radio_tea5777 *tea)
{
u32 freq;
int res;
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/media/radio/radio-tea5777.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,6 @@ struct radio_tea5777 {

int radio_tea5777_init(struct radio_tea5777 *tea, struct module *owner);
void radio_tea5777_exit(struct radio_tea5777 *tea);
int radio_tea5777_set_freq(struct radio_tea5777 *tea);

#endif /* __RADIO_TEA5777_H */

0 comments on commit ebe0b45

Please sign in to comment.