]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mtd: rawnand: jz4780: annotate implicit fall throughs
authorMathieu Malaterre <malat@debian.org>
Tue, 4 Dec 2018 20:10:57 +0000 (21:10 +0100)
committerMiquel Raynal <miquel.raynal@bootlin.com>
Fri, 7 Dec 2018 10:07:19 +0000 (11:07 +0100)
There is a plan to build the kernel with -Wimplicit-fallthrough and
these places in the code produced warnings. Fix them up.

Signed-off-by: Mathieu Malaterre <malat@debian.org>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
drivers/mtd/nand/raw/jz4780_bch.c

index 731c6051d91e0fcc49f69ac74c8f6ccdfddad2f8..7201827809e9aa461b5662a17f0e297c7379997d 100644 (file)
@@ -136,8 +136,10 @@ static void jz4780_bch_read_parity(struct jz4780_bch *bch, void *buf,
        switch (size8) {
        case 3:
                dest8[2] = (val >> 16) & 0xff;
+               /* fall through */
        case 2:
                dest8[1] = (val >> 8) & 0xff;
+               /* fall through */
        case 1:
                dest8[0] = val & 0xff;
                break;