diff options
| author | Stefan Roese <sr@denx.de> | 2006-11-10 07:48:47 +0100 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2006-11-10 07:48:47 +0100 | 
| commit | dfc8a9ee0040e53ada125a3c52f241e37f09cf28 (patch) | |
| tree | 60fd3973150a4e6b3d9d129d117ecab71b5edabe /nand_spl/nand_boot.c | |
| parent | 5c912cb1c31266c66ca59b36f9b6f87296421d75 (diff) | |
| parent | 91650b3e4de688038d4f71279c44858e3e2c6870 (diff) | |
| download | olio-uboot-2014.01-dfc8a9ee0040e53ada125a3c52f241e37f09cf28.tar.xz olio-uboot-2014.01-dfc8a9ee0040e53ada125a3c52f241e37f09cf28.zip  | |
Merge with /home/stefan/git/u-boot/denx
Diffstat (limited to 'nand_spl/nand_boot.c')
| -rw-r--r-- | nand_spl/nand_boot.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/nand_spl/nand_boot.c b/nand_spl/nand_boot.c index 21abb09e3..a136fb707 100644 --- a/nand_spl/nand_boot.c +++ b/nand_spl/nand_boot.c @@ -34,7 +34,7 @@ extern int jump_to_uboot(ulong addr);  static int nand_is_bad_block(struct mtd_info *mtd, int block)  { -        struct nand_chip *this = mtd->priv; +	struct nand_chip *this = mtd->priv;  	int page_addr = block * CFG_NAND_PAGE_COUNT;  	/* Begin command latch cycle */ @@ -73,7 +73,7 @@ static int nand_is_bad_block(struct mtd_info *mtd, int block)  static int nand_read_page(struct mtd_info *mtd, int block, int page, uchar *dst)  { -        struct nand_chip *this = mtd->priv; +	struct nand_chip *this = mtd->priv;  	int page_addr = page + block * CFG_NAND_PAGE_COUNT;  	int i;  |