From: Gustavo A. R. Silva Date: Fri, 27 Oct 2017 20:49:28 +0000 (-0500) Subject: usb: storage: sddr55: mark expected switch fall-through X-Git-Tag: v5.15~10044^2~110 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c2300cd67c9583c8084767dd4dac19287afc5498;p=platform%2Fkernel%2Flinux-starfive.git usb: storage: sddr55: mark expected switch fall-through In preparation to enabling -Wimplicit-fallthrough, mark switch cases where we are expecting to fall through. Signed-off-by: Gustavo A. R. Silva Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/storage/sddr55.c b/drivers/usb/storage/sddr55.c index 147c50b..b973da4 100644 --- a/drivers/usb/storage/sddr55.c +++ b/drivers/usb/storage/sddr55.c @@ -604,6 +604,7 @@ static unsigned long sddr55_get_capacity(struct us_data *us) { case 0x64: info->pageshift = 8; info->smallpageshift = 1; + /* fall through */ case 0x5d: // 5d is a ROM card with pagesize 512. return 0x00200000;