aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinyu Yuan <[email protected]>2022-03-03 13:09:02 +0200
committerGreg Kroah-Hartman <[email protected]>2022-03-03 15:46:08 +0100
commitc2b0d55080a2c670fede6e82c7019f4329ab07fe (patch)
treeba3a9bf9201ac44331a07064803494b47b52a99a
parentc63d5757d0fcbcb6cb4ceb038ef1c477a51c0930 (diff)
usb: host: xhci: add blank line in xhci_halt()
It is more readable to add blank lines. Signed-off-by: Linyu Yuan <[email protected]> Signed-off-by: Mathias Nyman <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/usb/host/xhci.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c
index e17eef88e5d7..1aa10db23fbb 100644
--- a/drivers/usb/host/xhci.c
+++ b/drivers/usb/host/xhci.c
@@ -110,6 +110,7 @@ void xhci_quiesce(struct xhci_hcd *xhci)
int xhci_halt(struct xhci_hcd *xhci)
{
int ret;
+
xhci_dbg_trace(xhci, trace_xhci_dbg_init, "// Halt the HC");
xhci_quiesce(xhci);
@@ -119,8 +120,10 @@ int xhci_halt(struct xhci_hcd *xhci)
xhci_warn(xhci, "Host halt failed, %d\n", ret);
return ret;
}
+
xhci->xhc_state |= XHCI_STATE_HALTED;
xhci->cmd_ring_state = CMD_RING_STATE_STOPPED;
+
return ret;
}