]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/linux/linux-mtx-1-2.4.24/03-mtd-erase-compiler-bug.diff
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / linux / linux-mtx-1-2.4.24 / 03-mtd-erase-compiler-bug.diff
1 --- linux-mips-2.4.24-pre2+mtd-2004-01-27/fs/jffs2/erase.c      2004-11-17 18:17:59.000000000 +0100
2 +++ linux/fs/jffs2/erase.c      2004-11-17 18:44:52.260067088 +0100
3 @@ -365,11 +365,13 @@
4                 jeb->dirty_size = 0;
5                 jeb->wasted_size = 0;
6         } else {
7 -               struct jffs2_unknown_node marker = {
8 -                       .magic =        cpu_to_je16(JFFS2_MAGIC_BITMASK),
9 -                       .nodetype =     cpu_to_je16(JFFS2_NODETYPE_CLEANMARKER),
10 -                       .totlen =       cpu_to_je32(c->cleanmarker_size)
11 -               };
12 +               /* compiler workaround, structure was not initialized before
13 +                  on mipsel cross compilers
14 +                  fix by Eugene.Wisor@flukenetworks.com */
15 +               struct jffs2_unknown_node marker;
16 +               marker.magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
17 +               marker.nodetype = cpu_to_je16(JFFS2_NODETYPE_CLEANMARKER);
18 +               marker.totlen = cpu_to_je32(c->cleanmarker_size);
19  
20                 marker.hdr_crc = cpu_to_je32(crc32(0, &marker, sizeof(struct jffs2_unknown_node)-4));
21