summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAldo Iljazi2013-11-30 18:33:57 +0100
committerGreg Kroah-Hartman2013-12-03 18:01:45 +0100
commit6bf2e2a59769264f40c75a31b07603faab9460b5 (patch)
tree5864b728e44ae529750738ef14f3024bfa685b08
parentstaging: dwc2: set up all module params (diff)
downloadkernel-qcow2-linux-6bf2e2a59769264f40c75a31b07603faab9460b5.tar.gz
kernel-qcow2-linux-6bf2e2a59769264f40c75a31b07603faab9460b5.tar.xz
kernel-qcow2-linux-6bf2e2a59769264f40c75a31b07603faab9460b5.zip
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 <mail@aldo.io> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/dwc2/hcd.c2
1 files changed, 1 insertions, 1 deletions
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,