diff options
author | Fabian Mewes <architekt@coding4coffee.org> | 2016-06-14 02:46:14 +0200 |
---|---|---|
committer | Scott Wood <oss@buserror.net> | 2016-06-19 19:26:55 -0500 |
commit | caad0d00a8bc3d44ca6581030b95dce97386689c (patch) | |
tree | 88a9ba0348919f7e0c5857dcf3ae6e7293c22c76 /doc | |
parent | 1866be7d28ce807397e4aedd93f70564ac8bebc0 (diff) | |
download | u-boot-caad0d00a8bc3d44ca6581030b95dce97386689c.zip u-boot-caad0d00a8bc3d44ca6581030b95dce97386689c.tar.gz u-boot-caad0d00a8bc3d44ca6581030b95dce97386689c.tar.bz2 |
nand: doc: fix example ecc scheme calculation
Signed-off-by: Fabian Mewes <architekt@coding4coffee.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/README.nand | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/README.nand b/doc/README.nand index 4ecf9de..edb45eb 100644 --- a/doc/README.nand +++ b/doc/README.nand @@ -271,7 +271,7 @@ Platform specific options However, for 4K pagesize NAND NAND_PAGESIZE = 4096 - NAND_OOBSIZE = 64 + NAND_OOBSIZE = 224 ECC_BYTES = 26 2 + (4096 / 512) * 26 = 210 < NAND_OOBSIZE Thus BCH16 can be supported on 4K page NAND. |