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-Url: https://git.stricted.de/?a=commitdiff_plain;h=4d6aecfb7e26d2e8746e2eb1eab5e0fe378065ab;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.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 ca6a89ab4663..ca661cee9b77 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) {