drivers/net/usb/r8152: remove the unneeded variable "ret" in rtl8152_system_suspend
rtl8152_system_suspend defines the variable "ret", but it is not modified after initialization. So just remove it. Signed-off-by: zhong jiang <zhongjiang@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8605212a7c
commit
f741917e24
|
@ -4415,7 +4415,6 @@ out1:
|
||||||
static int rtl8152_system_suspend(struct r8152 *tp)
|
static int rtl8152_system_suspend(struct r8152 *tp)
|
||||||
{
|
{
|
||||||
struct net_device *netdev = tp->netdev;
|
struct net_device *netdev = tp->netdev;
|
||||||
int ret = 0;
|
|
||||||
|
|
||||||
netif_device_detach(netdev);
|
netif_device_detach(netdev);
|
||||||
|
|
||||||
|
@ -4430,7 +4429,7 @@ static int rtl8152_system_suspend(struct r8152 *tp)
|
||||||
napi_enable(napi);
|
napi_enable(napi);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int rtl8152_suspend(struct usb_interface *intf, pm_message_t message)
|
static int rtl8152_suspend(struct usb_interface *intf, pm_message_t message)
|
||||||
|
|
Loading…
Reference in New Issue