From: Bjørn Mork Date: Fri, 1 Nov 2013 13:18:52 +0000 (+0100) Subject: net: cdc_mbim: manage_power should always set needs_remote_wakeup X-Git-Tag: v3.13-rc1~105^2~68^2~4 X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=04d948a9fc7b352b05125bd3d81c565fb8840c56;p=~andy%2Flinux net: cdc_mbim: manage_power should always set needs_remote_wakeup Reported-by: Oliver Neukum Signed-off-by: Bjørn Mork Signed-off-by: David S. Miller --- diff --git a/drivers/net/usb/cdc_mbim.c b/drivers/net/usb/cdc_mbim.c index af76aaf08b6..fbfd67fe6a9 100644 --- a/drivers/net/usb/cdc_mbim.c +++ b/drivers/net/usb/cdc_mbim.c @@ -44,13 +44,11 @@ static int cdc_mbim_manage_power(struct usbnet *dev, int on) if ((on && atomic_add_return(1, &info->pmcount) == 1) || (!on && atomic_dec_and_test(&info->pmcount))) { /* need autopm_get/put here to ensure the usbcore sees the new value */ rv = usb_autopm_get_interface(dev->intf); - if (rv < 0) - goto err; dev->intf->needs_remote_wakeup = on; - usb_autopm_put_interface(dev->intf); + if (!rv) + usb_autopm_put_interface(dev->intf); } -err: - return rv; + return 0; } static int cdc_mbim_wdm_manage_power(struct usb_interface *intf, int status)