Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6bf2e2a5 authored by Aldo Iljazi's avatar Aldo Iljazi Committed by Greg Kroah-Hartman
Browse files

Staging: dwc2: hcd.c: Fixed a coding style issue



Fixed a coding style issue, specifically:

Line 1798: Removed parentheses since return is not a function.

Signed-off-by: default avatarAldo Iljazi <mail@aldo.io>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 831eae69
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1795,7 +1795,7 @@ int dwc2_hcd_get_frame_number(struct dwc2_hsotg *hsotg)

int dwc2_hcd_is_b_host(struct dwc2_hsotg *hsotg)
{
	return (hsotg->op_state == OTG_STATE_B_HOST);
	return hsotg->op_state == OTG_STATE_B_HOST;
}

static struct dwc2_hcd_urb *dwc2_hcd_urb_alloc(struct dwc2_hsotg *hsotg,