diff options
author | Wolfgang Denk <wd@denx.de> | 2008-08-25 23:45:41 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-08-25 23:45:41 +0200 |
commit | a49d10cf027d059ee15c262010a05cdaec0961e1 (patch) | |
tree | ac6c10171c0673aae27a956157b2e133ddc79632 /drivers | |
parent | b97a31165ab042543bac38f692cf98575367afc4 (diff) | |
download | u-boot-imx-a49d10cf027d059ee15c262010a05cdaec0961e1.zip u-boot-imx-a49d10cf027d059ee15c262010a05cdaec0961e1.tar.gz u-boot-imx-a49d10cf027d059ee15c262010a05cdaec0961e1.tar.bz2 |
Minor coding style cleanup, updte CHANGELOG
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mtd/onenand/onenand_bbt.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/mtd/onenand/onenand_bbt.c b/drivers/mtd/onenand/onenand_bbt.c index dde11ae..f6092b9 100644 --- a/drivers/mtd/onenand/onenand_bbt.c +++ b/drivers/mtd/onenand/onenand_bbt.c @@ -54,7 +54,7 @@ static int check_short_pattern(uint8_t * buf, int len, int paglen, * @param buf temporary buffer * @param bd descriptor for the good/bad block search pattern * @param chip create the table for a specific chip, -1 read all chips. - * Applies only if NAND_BBT_PERCHIP option is set + * Applies only if NAND_BBT_PERCHIP option is set * * Create a bad block table by scanning the device * for the given good/bad block identify pattern @@ -102,8 +102,8 @@ static int create_bbt(struct mtd_info *mtd, uint8_t * buf, bd->offs, &ops); /* If it is a initial bad block, just ignore it */ - if (ret == ONENAND_BBT_READ_FATAL_ERROR) - return -EIO; + if (ret == ONENAND_BBT_READ_FATAL_ERROR) + return -EIO; if (ret || check_short_pattern (&buf[j * scanlen], scanlen, mtd->writesize, bd)) { @@ -156,8 +156,8 @@ static int onenand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt) res = (bbm->bbt[block >> 3] >> (block & 0x06)) & 0x03; MTDDEBUG (MTD_DEBUG_LEVEL2, - "onenand_isbad_bbt: bbt info for offs 0x%08x: (block %d) 0x%02x\n", - (unsigned int)offs, block >> 1, res); + "onenand_isbad_bbt: bbt info for offs 0x%08x: (block %d) 0x%02x\n", + (unsigned int)offs, block >> 1, res); switch ((int)res) { case 0x00: |