diff options
author | John Youn <John.Youn@synopsys.com> | 2017-01-17 20:31:28 -0800 |
---|---|---|
committer | Felipe Balbi <felipe.balbi@linux.intel.com> | 2017-01-24 11:04:19 +0200 |
commit | ab2832028f07f19da9587310d3a6978dc4a34d61 (patch) | |
tree | 04b0e3329eef8c8779e7eb8f64da129951f17292 /drivers/usb/dwc2/core_intr.c | |
parent | 38beaec6fc8857c7e2dd1dd05975ed5211281f38 (diff) | |
download | linux-ab2832028f07f19da9587310d3a6978dc4a34d61.tar.gz linux-ab2832028f07f19da9587310d3a6978dc4a34d61.tar.bz2 linux-ab2832028f07f19da9587310d3a6978dc4a34d61.zip |
usb: dwc2: Fix logical continuations
Fix the formatting of logical statements to end the line with the
logical operator.
Signed-off-by: John Youn <johnyoun@synopsys.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Diffstat (limited to 'drivers/usb/dwc2/core_intr.c')
-rw-r--r-- | drivers/usb/dwc2/core_intr.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/usb/dwc2/core_intr.c b/drivers/usb/dwc2/core_intr.c index 0d4a2aaaa5dd..2f161bcf5f83 100644 --- a/drivers/usb/dwc2/core_intr.c +++ b/drivers/usb/dwc2/core_intr.c @@ -159,9 +159,8 @@ static void dwc2_handle_otg_intr(struct dwc2_hsotg *hsotg) " ++OTG Interrupt: Session Request Success Status Change++\n"); gotgctl = dwc2_readl(hsotg->regs + GOTGCTL); if (gotgctl & GOTGCTL_SESREQSCS) { - if (hsotg->params.phy_type == - DWC2_PHY_TYPE_PARAM_FS - && hsotg->params.i2c_enable > 0) { + if (hsotg->params.phy_type == DWC2_PHY_TYPE_PARAM_FS && + hsotg->params.i2c_enable > 0) { hsotg->srp_success = 1; } else { /* Clear Session Request */ |