diff options
| author | 2017-01-17 20:32:27 -0800 | |
|---|---|---|
| committer | 2017-01-24 11:04:21 +0200 | |
| commit | 1a2e91091330570655f2cd16fb3c624783387d8c (patch) | |
| tree | 85c0c0d8efca470633e8c1b50d03dcf965b87165 /drivers/usb/dwc2/hcd_queue.c | |
| parent | usb: dwc2: Fix code indentation after conditionals (diff) | |
| download | linux-dev-1a2e91091330570655f2cd16fb3c624783387d8c.tar.xz linux-dev-1a2e91091330570655f2cd16fb3c624783387d8c.zip | |
usb: dwc2: Remove 'return' from void function
The function returns void so a return is unnecessary.
Signed-off-by: John Youn <johnyoun@synopsys.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Diffstat (limited to 'drivers/usb/dwc2/hcd_queue.c')
| -rw-r--r-- | drivers/usb/dwc2/hcd_queue.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/dwc2/hcd_queue.c b/drivers/usb/dwc2/hcd_queue.c index faf45dfbf652..b1fc9fed6ebe 100644 --- a/drivers/usb/dwc2/hcd_queue.c +++ b/drivers/usb/dwc2/hcd_queue.c @@ -556,7 +556,6 @@ static void dwc2_qh_schedule_print(struct dwc2_hsotg *hsotg, DWC2_HS_SCHEDULE_UFRAMES, "uFrame", "us", dwc2_qh_print, &print_data); } - return; } #else static inline void dwc2_qh_schedule_print(struct dwc2_hsotg *hsotg, |
