From: Masahiro Yamada Date: Wed, 9 Nov 2016 02:08:10 +0000 (+0900) Subject: mtd: remove unneeded initializer in mtd_ooblayout_count_bytes() X-Git-Tag: v5.15~12218^2~4^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4d6aecfb7e26d2e8746e2eb1eab5e0fe378065ab;p=platform%2Fkernel%2Flinux-starfive.git mtd: remove unneeded initializer in mtd_ooblayout_count_bytes() There is no need to initialize oobregion since it will be filled by the iterator. This function is called with mtd_ooblayout_free or mtd_ooblayout_ecc for the iterator; both of them calls memset() to clear the oobregion. Signed-off-by: Masahiro Yamada Reviewed-by: Marek Vasut Signed-off-by: Boris Brezillon --- diff --git a/drivers/mtd/mtdcore.c b/drivers/mtd/mtdcore.c index ca6a89a..ca661ce 100644 --- a/drivers/mtd/mtdcore.c +++ b/drivers/mtd/mtdcore.c @@ -1354,7 +1354,7 @@ static int mtd_ooblayout_count_bytes(struct mtd_info *mtd, int section, struct mtd_oob_region *oobregion)) { - struct mtd_oob_region oobregion = { }; + struct mtd_oob_region oobregion; int section = 0, ret, nbytes = 0; while (1) {