Skip to content

Commit

Permalink
[MTD] OneNAND: Clean up trailing white spaces
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Thomas Gleixner authored and Thomas Gleixner committed Nov 7, 2005
1 parent 61b03bd commit d5c5e78
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions drivers/mtd/onenand/onenand_base.c
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ static int onenand_command(struct mtd_info *mtd, int cmd, loff_t addr, size_t le
/* Write 'BSA, BSC' of DataRAM */
value = onenand_buffer_address(dataram, sectors, count);
this->write_word(value, this->base + ONENAND_REG_START_BUFFER);

if (readcmd) {
/* Select DataRAM for DDP */
value = onenand_bufferram_address(this, block);
Expand Down Expand Up @@ -433,7 +433,7 @@ static int onenand_write_bufferram(struct mtd_info *mtd, int area,
* onenand_check_bufferram - [GENERIC] Check BufferRAM information
* @param mtd MTD data structure
* @param addr address to check
* @return 1 if there are valid data, otherwise 0
* @return 1 if there are valid data, otherwise 0
*
* Check bufferram if there is data we required
*/
Expand All @@ -442,7 +442,7 @@ static int onenand_check_bufferram(struct mtd_info *mtd, loff_t addr)
struct onenand_chip *this = mtd->priv;
int block, page;
int i;

block = (int) (addr >> this->erase_shift);
page = (int) (addr >> this->page_shift);
page &= this->page_mask;
Expand Down Expand Up @@ -472,7 +472,7 @@ static int onenand_update_bufferram(struct mtd_info *mtd, loff_t addr,
struct onenand_chip *this = mtd->priv;
int block, page;
int i;

block = (int) (addr >> this->erase_shift);
page = (int) (addr >> this->page_shift);
page &= this->page_mask;
Expand Down Expand Up @@ -743,7 +743,7 @@ static int onenand_verify_page(struct mtd_info *mtd, u_char *buf, loff_t addr)

if (memcmp(dataram0, dataram1, mtd->oobblock))
return -EBADMSG;

return 0;
}
#else
Expand Down Expand Up @@ -832,7 +832,7 @@ static int onenand_write_ecc(struct mtd_info *mtd, loff_t to, size_t len,
onenand_release_device(mtd);

*retlen = written;

return ret;
}

Expand Down Expand Up @@ -917,7 +917,7 @@ static int onenand_write_oob(struct mtd_info *mtd, loff_t to, size_t len,
onenand_release_device(mtd);

*retlen = written;

return 0;
}

Expand Down Expand Up @@ -969,12 +969,12 @@ static int onenand_writev_ecc(struct mtd_info *mtd, const struct kvec *vecs,
onenand_get_device(mtd, FL_WRITING);

/* TODO handling oob */

/* Loop until all keve's data has been written */
len = 0;
while (count) {
pbuf = buffer;
/*
/*
* If the given tuple is >= pagesize then
* write it out from the iov
*/
Expand Down Expand Up @@ -1316,7 +1316,7 @@ static int onenand_unlock(struct mtd_info *mtd, loff_t ofs, size_t len)
if (!(status & ONENAND_WP_US))
printk(KERN_ERR "block = %d, wp status = 0x%x\n", block, status);
}

return 0;
}

Expand Down Expand Up @@ -1439,7 +1439,7 @@ static int onenand_probe(struct mtd_info *mtd)
printk(KERN_INFO "Lock scheme is Continues Lock\n");
this->options |= ONENAND_CONT_LOCK;
}

return 0;
}

Expand Down Expand Up @@ -1533,7 +1533,7 @@ int onenand_scan(struct mtd_info *mtd, int maxchips)
}

memcpy(&mtd->oobinfo, this->autooob, sizeof(mtd->oobinfo));

/* Fill in remaining MTD driver data */
mtd->type = MTD_NANDFLASH;
mtd->flags = MTD_CAP_NANDFLASH | MTD_ECC;
Expand Down

0 comments on commit d5c5e78

Please sign in to comment.