mtd: remove unneeded initializer in mtd_ooblayout_{get, set}_bytes()
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Wed, 9 Nov 2016 02:08:08 +0000 (11:08 +0900)
committerBoris Brezillon <boris.brezillon@free-electrons.com>
Sat, 19 Nov 2016 18:31:29 +0000 (19:31 +0100)
There is no need to initialize oobregion and section since they will
be filled by mtd_ooblayout_find_region().

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Marek Vasut <marek.vasut@gmail.com>
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
drivers/mtd/mtdcore.c

index d46e4ad..cf85f2b 100644 (file)
@@ -1274,8 +1274,8 @@ static int mtd_ooblayout_get_bytes(struct mtd_info *mtd, u8 *buf,
                                            int section,
                                            struct mtd_oob_region *oobregion))
 {
-       struct mtd_oob_region oobregion = { };
-       int section = 0, ret;
+       struct mtd_oob_region oobregion;
+       int section, ret;
 
        ret = mtd_ooblayout_find_region(mtd, start, &section,
                                        &oobregion, iter);
@@ -1317,8 +1317,8 @@ static int mtd_ooblayout_set_bytes(struct mtd_info *mtd, const u8 *buf,
                                            int section,
                                            struct mtd_oob_region *oobregion))
 {
-       struct mtd_oob_region oobregion = { };
-       int section = 0, ret;
+       struct mtd_oob_region oobregion;
+       int section, ret;
 
        ret = mtd_ooblayout_find_region(mtd, start, &section,
                                        &oobregion, iter);