Commit d9777f1c authored by Jarkko Lavinen's avatar Jarkko Lavinen Committed by Jarkko Lavinen

OneNand: Fix free byte positions.

Some free byte positions at onenand_oob_64 were wrong. This was also
reported by Christian Lehne. 3 byte slots are at 2+16*i and 2 byte
slots at 14+16*i.
Signed-off-by: default avatarJarkko Lavinen <jarkko.lavinen@nokia.com>
parent 9c01f87d
...@@ -34,7 +34,8 @@ static struct nand_oobinfo onenand_oob_64 = { ...@@ -34,7 +34,8 @@ static struct nand_oobinfo onenand_oob_64 = {
}, },
.oobfree = { .oobfree = {
{2, 3}, {14, 2}, {18, 3}, {30, 2}, {2, 3}, {14, 2}, {18, 3}, {30, 2},
{24, 3}, {46, 2}, {40, 3}, {62, 2} } {34, 3}, {46, 2}, {50, 3}, {62, 2}
}
}; };
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment