From: Gustavo A. R. Silva Date: Thu, 9 Feb 2017 07:49:56 +0000 (-0600) Subject: drivers: usb: usbip: Add missing break statement to switch X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=7c92e5fbf4dac0dd4dd41a0383adc54f16f403e2;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git 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 Signed-off-by: Greg Kroah-Hartman --- 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);