From: Gustavo A. R. Silva Date: Mon, 13 Sep 2021 22:22:01 +0000 (-0500) Subject: pcmcia: db1xxx_ss: Fix fall-through warning for Clang X-Git-Tag: v5.16-rc1~175^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=02900f428d3c7acd89b77784bec33ddec7b750a4;p=thirdparty%2Fkernel%2Flinux.git pcmcia: db1xxx_ss: Fix fall-through warning for Clang Fix the following fallthrough warning: drivers/pcmcia/db1xxx_ss.c:359:2: warning: unannotated fall-through between switch labels [-Wimplicit-fallthrough] case 3: ^ drivers/pcmcia/db1xxx_ss.c:359:2: note: insert 'break;' to avoid fall-through case 3: ^ break; This helps with the ongoing efforts to globally enable -Wimplicit-fallthrough for Clang. Link: https://github.com/KSPP/linux/issues/115 Link: https://lore.kernel.org/linux-mm/202109030839.t2llsvmc-lkp@intel.com/ Reported-by: kernel test robot Signed-off-by: Gustavo A. R. Silva --- diff --git a/drivers/pcmcia/db1xxx_ss.c b/drivers/pcmcia/db1xxx_ss.c index a6fbc709913e6..87a33ecc2cf14 100644 --- a/drivers/pcmcia/db1xxx_ss.c +++ b/drivers/pcmcia/db1xxx_ss.c @@ -356,6 +356,7 @@ static int db1x_pcmcia_get_status(struct pcmcia_socket *skt, case 0: case 2: status |= SS_3VCARD; /* 3V card */ + break; case 3: break; /* 5V card: set nothing */ default: