diff options
author | 2017-02-09 01:49:56 -0600 | |
---|---|---|
committer | 2017-02-09 13:34:18 +0100 | |
commit | 7c92e5fbf4dac0dd4dd41a0383adc54f16f403e2 (patch) | |
tree | 216fdbf63bd111de390599b8229fa32fdf526078 | |
parent | usb: mtu3: remove redundant dev_err call in get_ssusb_rscs() (diff) | |
download | wireguard-linux-7c92e5fbf4dac0dd4dd41a0383adc54f16f403e2.tar.xz wireguard-linux-7c92e5fbf4dac0dd4dd41a0383adc54f16f403e2.zip |
drivers: usb: usbip: Add missing break statement to switch
Add missing break statement to prevent the code for case
USB_PORT_FEAT_C_RESET falling through to the default case.
Addresses-Coverity-ID: 143155
Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to '')
-rw-r--r-- | drivers/usb/usbip/vhci_hcd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/usbip/vhci_hcd.c b/drivers/usb/usbip/vhci_hcd.c index c4724fb3a691..e4cb9f0625e8 100644 --- a/drivers/usb/usbip/vhci_hcd.c +++ b/drivers/usb/usbip/vhci_hcd.c @@ -313,6 +313,7 @@ static int vhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue, default: break; } + break; default: usbip_dbg_vhci_rh(" ClearPortFeature: default %x\n", wValue); |