1
0
Fork 0

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>
hifive-unleashed-5.1
zhong jiang 2018-08-09 09:39:13 +08:00 committed by David S. Miller
parent 8605212a7c
commit f741917e24
1 changed files with 1 additions and 2 deletions

View File

@ -4415,7 +4415,6 @@ out1:
static int rtl8152_system_suspend(struct r8152 *tp)
{
struct net_device *netdev = tp->netdev;
int ret = 0;
netif_device_detach(netdev);
@ -4430,7 +4429,7 @@ static int rtl8152_system_suspend(struct r8152 *tp)
napi_enable(napi);
}
return ret;
return 0;
}
static int rtl8152_suspend(struct usb_interface *intf, pm_message_t message)