提交 f1cda54c 编写于 作者: S Saurabh Karajgaonkar 提交者: Greg Kroah-Hartman

usb: host: xhci: Simplify return statement

Replace redundant variable use in return statement.
Signed-off-by: NSaurabh Karajgaonkar <skarajga@visteon.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 8602b08a
...@@ -4678,7 +4678,6 @@ int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd, ...@@ -4678,7 +4678,6 @@ int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
{ {
struct xhci_hcd *xhci; struct xhci_hcd *xhci;
u16 mel; u16 mel;
int ret;
xhci = hcd_to_xhci(hcd); xhci = hcd_to_xhci(hcd);
if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) || if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) ||
...@@ -4686,10 +4685,7 @@ int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd, ...@@ -4686,10 +4685,7 @@ int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
return 0; return 0;
mel = calculate_max_exit_latency(udev, state, USB3_LPM_DISABLED); mel = calculate_max_exit_latency(udev, state, USB3_LPM_DISABLED);
ret = xhci_change_max_exit_latency(xhci, udev, mel); return xhci_change_max_exit_latency(xhci, udev, mel);
if (ret)
return ret;
return 0;
} }
#else /* CONFIG_PM */ #else /* CONFIG_PM */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册