aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth
diff options
context:
space:
mode:
authorShuah Khan <shuah.kh@samsung.com>2013-05-21 11:32:06 -0400
committerGustavo Padovan <gustavo.padovan@collabora.co.uk>2013-06-22 19:23:53 -0400
commit502f769662978a2fe99d0caed5e53e3006107381 (patch)
tree9b1749bb088ad8b715c5b394a500f43fc965d369 /drivers/bluetooth
parent673e1dd7ed7701cac8c5c247d152fd3d2da2a4f1 (diff)
Bluetooth: Add missing reset_resume dev_pm_ops
Add missing reset_resume dev_pm_ops. Missing reset_resume results in the following message after power management device test. This change sets reset_resume to btusb_resume(). [ 2506.936134] btusb 1-1.5:1.0: no reset_resume for driver btusb? [ 2506.936137] btusb 1-1.5:1.1: no reset_resume for driver btusb? Signed-off-by: Shuah Khan <shuah.kh@samsung.com> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r--drivers/bluetooth/btusb.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index 81f12757a842..de4cf4daa2f4 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -1619,6 +1619,7 @@ static struct usb_driver btusb_driver = {
1619#ifdef CONFIG_PM 1619#ifdef CONFIG_PM
1620 .suspend = btusb_suspend, 1620 .suspend = btusb_suspend,
1621 .resume = btusb_resume, 1621 .resume = btusb_resume,
1622 .reset_resume = btusb_resume,
1622#endif 1623#endif
1623 .id_table = btusb_table, 1624 .id_table = btusb_table,
1624 .supports_autosuspend = 1, 1625 .supports_autosuspend = 1,