Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 107287
b: refs/heads/master
c: cf84039
h: refs/heads/master
i:
  107285: 6883638
  107283: 4210f84
  107279: 8dee7cb
v: v3
  • Loading branch information
Mike Frysinger authored and David Woodhouse committed Aug 1, 2008
1 parent 9263072 commit 3f3c941
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e274f025e2caaadc1a6dd41adc9c9a19be075110
refs/heads/master: cf840392e83914b9fcdbce8a8a2bc17a84cf0353
4 changes: 2 additions & 2 deletions trunk/drivers/mtd/nand/bf5xx_nand.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ static int bf5xx_nand_calculate_ecc(struct mtd_info *mtd,
ecc0 = bfin_read_NFC_ECC0();
ecc1 = bfin_read_NFC_ECC1();

code[0] = (ecc0 & 0x3FF) | ((ecc1 & 0x3FF) << 11);
code[0] = (ecc0 & 0x7ff) | ((ecc1 & 0x7ff) << 11);

dev_dbg(info->device, "returning ecc 0x%08x\n", code[0]);

Expand All @@ -310,7 +310,7 @@ static int bf5xx_nand_calculate_ecc(struct mtd_info *mtd,
if (page_size == 512) {
ecc0 = bfin_read_NFC_ECC2();
ecc1 = bfin_read_NFC_ECC3();
code[1] = (ecc0 & 0x3FF) | ((ecc1 & 0x3FF) << 11);
code[1] = (ecc0 & 0x7ff) | ((ecc1 & 0x7ff) << 11);

/* second 3 bytes in ecc_code for second 256
* bytes of 512 page size
Expand Down

0 comments on commit 3f3c941

Please sign in to comment.