[Yaffs] [PATCH YAFFS2 11/15] sparse-fix--use-C99-struct-initializer
Luc Van Oostenryck
luc.vanoostenryck at looxix.net
Thu Jul 28 00:00:22 BST 2005
Use C99 syntax for labelled struct initializer.
-- Luc Van Oostenryck
-------------- next part --------------
diff --git a/fs/yaffs2/mtdemul/nandemul2k.c b/fs/yaffs2/mtdemul/nandemul2k.c
--- a/fs/yaffs2/mtdemul/nandemul2k.c
+++ b/fs/yaffs2/mtdemul/nandemul2k.c
@@ -650,9 +650,9 @@ __setup("sizeInMB=",sizeInMB);
static struct mtd_partition nandemul2k_partition[] =
{
- { name: "NANDemul partition 1",
- offset: 0,
- size: 0 },
+ { .name = "NANDemul partition 1",
+ .offset = 0,
+ .size = 0 },
};
static int nPartitions = sizeof(nandemul2k_partition)/sizeof(nandemul2k_partition[0]);
diff --git a/fs/yaffs2/yaffs_mtdif.c b/fs/yaffs2/yaffs_mtdif.c
--- a/fs/yaffs2/yaffs_mtdif.c
+++ b/fs/yaffs2/yaffs_mtdif.c
@@ -29,12 +29,12 @@ const char *yaffs_mtdif_c_version = "$Id
#endif
struct nand_oobinfo yaffs_oobinfo = {
- useecc: 1,
- eccpos: {8, 9, 10, 13, 14, 15}
+ .useecc = 1,
+ .eccpos = {8, 9, 10, 13, 14, 15}
};
struct nand_oobinfo yaffs_noeccinfo = {
- useecc: 0,
+ .useecc = 0,
};
More information about the yaffs
mailing list