diff options
| author | Wolfgang Denk <wd@denx.de> | 2008-08-14 14:41:06 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-08-14 14:41:06 +0200 | 
| commit | 4b0708093e15b412296328bf81325cf9b69fe512 (patch) | |
| tree | 3586fc61e3fbac6553d888eb3091fb6064638cbb /nand_spl/nand_boot.c | |
| parent | 28ac6719108e989429de2b3dfa90312ba7c4d27b (diff) | |
| download | olio-uboot-2014.01-4b0708093e15b412296328bf81325cf9b69fe512.tar.xz olio-uboot-2014.01-4b0708093e15b412296328bf81325cf9b69fe512.zip | |
Coding Style cleanup, update CHANGELOG
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'nand_spl/nand_boot.c')
| -rw-r--r-- | nand_spl/nand_boot.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/nand_spl/nand_boot.c b/nand_spl/nand_boot.c index 16d128fc8..0c06e5363 100644 --- a/nand_spl/nand_boot.c +++ b/nand_spl/nand_boot.c @@ -95,7 +95,7 @@ static int nand_command(struct mtd_info *mtd, int block, int page, int offs, u8  	/* Set ALE and clear CLE to start address cycle */  	/* Column address */  	this->cmd_ctrl(mtd, offs & 0xff, -	               NAND_CTRL_ALE | NAND_CTRL_CHANGE); /* A[7:0] */ +		       NAND_CTRL_ALE | NAND_CTRL_CHANGE); /* A[7:0] */  	this->cmd_ctrl(mtd, (offs >> 8) & 0xff, 0); /* A[11:9] */  	/* Row address */  	this->cmd_ctrl(mtd, (page_addr & 0xff), 0); /* A[19:12] */ @@ -106,7 +106,7 @@ static int nand_command(struct mtd_info *mtd, int block, int page, int offs, u8  #endif  	/* Latch in address */  	this->cmd_ctrl(mtd, NAND_CMD_READSTART, -	               NAND_CTRL_CLE | NAND_CTRL_CHANGE); +		       NAND_CTRL_CLE | NAND_CTRL_CHANGE);  	this->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);  	/* @@ -185,7 +185,7 @@ static int nand_read_page(struct mtd_info *mtd, int block, int page, uchar *dst)  }  static int nand_load(struct mtd_info *mtd, unsigned int offs, -                     unsigned int uboot_size, uchar *dst) +		     unsigned int uboot_size, uchar *dst)  {  	unsigned int block, lastblock;  	unsigned int page; |