diff options
70 files changed, 1512 insertions, 13 deletions
diff --git a/drivers/bluetooth/ath3k.c b/drivers/bluetooth/ath3k.c index 57fd867553d7..2812b152d6e9 100644 --- a/drivers/bluetooth/ath3k.c +++ b/drivers/bluetooth/ath3k.c | |||
| @@ -439,6 +439,7 @@ static struct usb_driver ath3k_driver = { | |||
| 439 | .probe = ath3k_probe, | 439 | .probe = ath3k_probe, |
| 440 | .disconnect = ath3k_disconnect, | 440 | .disconnect = ath3k_disconnect, |
| 441 | .id_table = ath3k_table, | 441 | .id_table = ath3k_table, |
| 442 | .disable_hub_initiated_lpm = 1, | ||
| 442 | }; | 443 | }; |
| 443 | 444 | ||
| 444 | module_usb_driver(ath3k_driver); | 445 | module_usb_driver(ath3k_driver); |
diff --git a/drivers/bluetooth/bcm203x.c b/drivers/bluetooth/bcm203x.c index 1e742a50e2cd..37ae175162f3 100644 --- a/drivers/bluetooth/bcm203x.c +++ b/drivers/bluetooth/bcm203x.c | |||
| @@ -279,6 +279,7 @@ static struct usb_driver bcm203x_driver = { | |||
| 279 | .probe = bcm203x_probe, | 279 | .probe = bcm203x_probe, |
| 280 | .disconnect = bcm203x_disconnect, | 280 | .disconnect = bcm203x_disconnect, |
| 281 | .id_table = bcm203x_table, | 281 | .id_table = bcm203x_table, |
| 282 | .disable_hub_initiated_lpm = 1, | ||
| 282 | }; | 283 | }; |
| 283 | 284 | ||
| 284 | module_usb_driver(bcm203x_driver); | 285 | module_usb_driver(bcm203x_driver); |
diff --git a/drivers/bluetooth/bfusb.c b/drivers/bluetooth/bfusb.c index b8ac1c549a1c..32e825144fe9 100644 --- a/drivers/bluetooth/bfusb.c +++ b/drivers/bluetooth/bfusb.c | |||
| @@ -749,6 +749,7 @@ static struct usb_driver bfusb_driver = { | |||
| 749 | .probe = bfusb_probe, | 749 | .probe = bfusb_probe, |
| 750 | .disconnect = bfusb_disconnect, | 750 | .disconnect = bfusb_disconnect, |
| 751 | .id_table = bfusb_table, | 751 | .id_table = bfusb_table, |
| 752 | .disable_hub_initiated_lpm = 1, | ||
| 752 | }; | 753 | }; |
| 753 | 754 | ||
| 754 | module_usb_driver(bfusb_driver); | 755 | module_usb_driver(bfusb_driver); |
diff --git a/drivers/bluetooth/bpa10x.c b/drivers/bluetooth/bpa10x.c index d894340a7601..609861a53c28 100644 --- a/drivers/bluetooth/bpa10x.c +++ b/drivers/bluetooth/bpa10x.c | |||
| @@ -508,6 +508,7 @@ static struct usb_driver bpa10x_driver = { | |||
| 508 | .probe = bpa10x_probe, | 508 | .probe = bpa10x_probe, |
| 509 | .disconnect = bpa10x_disconnect, | 509 | .disconnect = bpa10x_disconnect, |
| 510 | .id_table = bpa10x_table, | 510 | .id_table = bpa10x_table, |
| 511 | .disable_hub_initiated_lpm = 1, | ||
| 511 | }; | 512 | }; |
| 512 | 513 | ||
| 513 | module_usb_driver(bpa10x_driver); | 514 | module_usb_driver(bpa10x_driver); |
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 9217121362e1..461c68bc4dd7 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c | |||
| @@ -1218,6 +1218,7 @@ static struct usb_driver btusb_driver = { | |||
| 1218 | #endif | 1218 | #endif |
| 1219 | .id_table = btusb_table, | 1219 | .id_table = btusb_table, |
| 1220 | .supports_autosuspend = 1, | 1220 | .supports_autosuspend = 1, |
| 1221 | .disable_hub_initiated_lpm = 1, | ||
| 1221 | }; | 1222 | }; |
| 1222 | 1223 | ||
| 1223 | module_usb_driver(btusb_driver); | 1224 | module_usb_driver(btusb_driver); |
diff --git a/drivers/isdn/gigaset/bas-gigaset.c b/drivers/isdn/gigaset/bas-gigaset.c index afa080258bfa..17ea0177a529 100644 --- a/drivers/isdn/gigaset/bas-gigaset.c +++ b/drivers/isdn/gigaset/bas-gigaset.c | |||
| @@ -148,6 +148,7 @@ static struct usb_driver gigaset_usb_driver = { | |||
| 148 | .reset_resume = gigaset_post_reset, | 148 | .reset_resume = gigaset_post_reset, |
| 149 | .pre_reset = gigaset_pre_reset, | 149 | .pre_reset = gigaset_pre_reset, |
| 150 | .post_reset = gigaset_post_reset, | 150 | .post_reset = gigaset_post_reset, |
| 151 | .disable_hub_initiated_lpm = 1, | ||
| 151 | }; | 152 | }; |
| 152 | 153 | ||
| 153 | /* get message text for usb_submit_urb return code | 154 | /* get message text for usb_submit_urb return code |
diff --git a/drivers/isdn/gigaset/usb-gigaset.c b/drivers/isdn/gigaset/usb-gigaset.c index 049da67f6392..78f81e8a5be6 100644 --- a/drivers/isdn/gigaset/usb-gigaset.c +++ b/drivers/isdn/gigaset/usb-gigaset.c | |||
| @@ -124,6 +124,7 @@ static struct usb_driver gigaset_usb_driver = { | |||
| 124 | .reset_resume = gigaset_resume, | 124 | .reset_resume = gigaset_resume, |
| 125 | .pre_reset = gigaset_pre_reset, | 125 | .pre_reset = gigaset_pre_reset, |
| 126 | .post_reset = gigaset_resume, | 126 | .post_reset = gigaset_resume, |
| 127 | .disable_hub_initiated_lpm = 1, | ||
| 127 | }; | 128 | }; |
| 128 | 129 | ||
| 129 | struct usb_cardstate { | 130 | struct usb_cardstate { |
