mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
atmel_nand: fix the U-Boot output information about nand flash with PMECC enable.
Before the patch, it looks like: |U-Boot 2012.07-00441-gd578d6f-dirty (Sep 10 2012 - 16:11:06) | |CPU: AT91SAM9G35 |Crystal frequency: 12 MHz |CPU clock : 400 MHz |Master clock : 133.333 MHz |DRAM: 128 MiB |WARNING: Caches not enabled > |NAND: Initialize PMECC params, cap: 2, sector: 512 > |256 MiB |MMC: mci: 0 |In: serial |Out: serial |Err: serial |Net: macb0 |Hit any key to stop autoboot: 0 After the patch: |U-Boot 2012.07-00441-gd578d6f-dirty (Sep 10 2012 - 16:18:11) | |CPU: AT91SAM9G35 |Crystal frequency: 12 MHz |CPU clock : 400 MHz |Master clock : 133.333 MHz |DRAM: 128 MiB |WARNING: Caches not enabled > |NAND: 256 MiB | ... ... |Hit any key to stop autoboot: 0 Signed-off-by: Josh Wu <josh.wu@atmel.com> Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
This commit is contained in:
parent
1c5794a13e
commit
b9c83c6815
1 changed files with 3 additions and 2 deletions
|
@ -652,8 +652,9 @@ static int atmel_pmecc_nand_init_params(struct nand_chip *nand,
|
|||
sector_size = host->pmecc_sector_size = CONFIG_PMECC_SECTOR_SIZE;
|
||||
host->pmecc_index_table_offset = CONFIG_PMECC_INDEX_TABLE_OFFSET;
|
||||
|
||||
printk(KERN_INFO "Initialize PMECC params, cap: %d, sector: %d\n",
|
||||
cap, sector_size);
|
||||
MTDDEBUG(MTD_DEBUG_LEVEL1,
|
||||
"Initialize PMECC params, cap: %d, sector: %d\n",
|
||||
cap, sector_size);
|
||||
|
||||
host->pmecc = (struct pmecc_regs __iomem *) ATMEL_BASE_PMECC;
|
||||
host->pmerrloc = (struct pmecc_errloc_regs __iomem *)
|
||||
|
|
Loading…
Reference in a new issue