summaryrefslogtreecommitdiffstats
path: root/drivers/net
diff options
context:
space:
mode:
authorTorgny Johansson2010-04-28 02:07:40 +0200
committerDavid S. Miller2010-04-28 02:07:40 +0200
commit55964d72d63b15df49a5df11ef91dc8601270815 (patch)
tree69f78c30a50d0575b18b4f11646ffc7411c0f14d /drivers/net
parentbluetooth: handle l2cap_create_connless_pdu() errors (diff)
downloadkernel-qcow2-linux-55964d72d63b15df49a5df11ef91dc8601270815.tar.gz
kernel-qcow2-linux-55964d72d63b15df49a5df11ef91dc8601270815.tar.xz
kernel-qcow2-linux-55964d72d63b15df49a5df11ef91dc8601270815.zip
cdc_ether: fix autosuspend for mbm devices
Autosuspend works until you bring the wwan interface up, then the device does not enter autosuspend anymore. The following patch fixes the problem by setting the .manage_power field in the mbm_info struct to the same as in the cdc_info struct (cdc_manager_power). Signed-off-by: Torgny Johansson <torgny.johansson@ericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/usb/cdc_ether.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/usb/cdc_ether.c b/drivers/net/usb/cdc_ether.c
index c8cdb7f30adc..3547cf13d219 100644
--- a/drivers/net/usb/cdc_ether.c
+++ b/drivers/net/usb/cdc_ether.c
@@ -431,6 +431,7 @@ static const struct driver_info mbm_info = {
.bind = cdc_bind,
.unbind = usbnet_cdc_unbind,
.status = cdc_status,
+ .manage_power = cdc_manage_power,
};
/*-------------------------------------------------------------------------*/