From: Aldo Iljazi Date: Sat, 30 Nov 2013 17:33:57 +0000 (+0200) Subject: Staging: dwc2: hcd.c: Fixed a coding style issue X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=6bf2e2a59769264f40c75a31b07603faab9460b5;p=deliverable%2Flinux.git 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: Aldo Iljazi Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/dwc2/hcd.c b/drivers/staging/dwc2/hcd.c index 24a4efe874d6..24b57d7952c5 100644 --- a/drivers/staging/dwc2/hcd.c +++ b/drivers/staging/dwc2/hcd.c @@ -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,