mtd: rawnand: rockchip: Use flexible-array member instead of zero-length array
authorZou Wei <zou_wei@huawei.com>
Tue, 23 Mar 2021 13:11:37 +0000 (13:11 +0000)
committerMiquel Raynal <miquel.raynal@bootlin.com>
Sun, 28 Mar 2021 17:13:39 +0000 (19:13 +0200)
Suppresses the following coccinelle warning:

drivers/mtd/nand/raw/rockchip-nand-controller.c:162:4-8: WARNING use flexible-array member instead

Signed-off-by: Zou Wei <zou_wei@huawei.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20210323131137.45552-1-zou_wei@huawei.com
drivers/mtd/nand/raw/rockchip-nand-controller.c

index 796b678..b5405bc 100644 (file)
@@ -159,7 +159,7 @@ struct rk_nfc_nand_chip {
        u32 timing;
 
        u8 nsels;
-       u8 sels[0];
+       u8 sels[];
        /* Nothing after this field. */
 };