mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-02-15 04:42:02 +00:00
39 lines
1.5 KiB
Diff
39 lines
1.5 KiB
Diff
|
From 44699674ecaf8a93438ea8e27e729fdb20aef17e Mon Sep 17 00:00:00 2001
|
|||
|
From: Nathan Chancellor <natechancellor@gmail.com>
|
|||
|
Date: Sun, 4 Mar 2018 20:09:26 -0700
|
|||
|
Subject: [PATCH 266/277] usb: dwb_otg: Fix unreachable switch statement
|
|||
|
warning
|
|||
|
MIME-Version: 1.0
|
|||
|
Content-Type: text/plain; charset=UTF-8
|
|||
|
Content-Transfer-Encoding: 8bit
|
|||
|
|
|||
|
This warning appears with GCC 7.3.0 from toolchains.bootlin.com:
|
|||
|
|
|||
|
../drivers/usb/host/dwc_otg/dwc_otg_fiq_fsm.c: In function ‘fiq_fsm_update_hs_isoc’:
|
|||
|
../drivers/usb/host/dwc_otg/dwc_otg_fiq_fsm.c:595:61: warning: statement will never be executed [-Wswitch-unreachable]
|
|||
|
st->hctsiz_copy.b.xfersize = nrpackets * st->hcchar_copy.b.mps;
|
|||
|
~~~~~~~~~~~~~~~~~^~~~
|
|||
|
|
|||
|
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
|
|||
|
---
|
|||
|
drivers/usb/host/dwc_otg/dwc_otg_fiq_fsm.c | 2 +-
|
|||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|||
|
|
|||
|
diff --git a/drivers/usb/host/dwc_otg/dwc_otg_fiq_fsm.c b/drivers/usb/host/dwc_otg/dwc_otg_fiq_fsm.c
|
|||
|
index ec804c7cd06d..ca362db1602a 100644
|
|||
|
--- a/drivers/usb/host/dwc_otg/dwc_otg_fiq_fsm.c
|
|||
|
+++ b/drivers/usb/host/dwc_otg/dwc_otg_fiq_fsm.c
|
|||
|
@@ -591,8 +591,8 @@ static int notrace noinline fiq_fsm_update_hs_isoc(struct fiq_state *state, int
|
|||
|
}
|
|||
|
|
|||
|
} else {
|
|||
|
- switch (st->hcchar_copy.b.multicnt) {
|
|||
|
st->hctsiz_copy.b.xfersize = nrpackets * st->hcchar_copy.b.mps;
|
|||
|
+ switch (st->hcchar_copy.b.multicnt) {
|
|||
|
case 1:
|
|||
|
st->hctsiz_copy.b.pid = DWC_PID_DATA0;
|
|||
|
break;
|
|||
|
--
|
|||
|
2.16.1
|
|||
|
|