diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-05-16 14:27:40 +0200 | 
|---|---|---|
| committer | Scott Wood <scottwood@freescale.com> | 2009-07-07 17:58:06 -0500 | 
| commit | 378adfcdf4bbd77ee4cbc3276d4733e218308a21 (patch) | |
| tree | f01199f62880c8a24e73b01184ac08781ac38443 /drivers/mtd/nand/nand_util.c | |
| parent | 8360b66bac9567701027a0087274d0c9b2fe8d6b (diff) | |
| download | olio-uboot-2014.01-378adfcdf4bbd77ee4cbc3276d4733e218308a21.tar.xz olio-uboot-2014.01-378adfcdf4bbd77ee4cbc3276d4733e218308a21.zip | |
mtd: nand: use loff_t for offset
nand_util currently uses size_t which is arch dependent and not always a
unsigned long.  Now use loff_t, as does the linux mtd layer.
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'drivers/mtd/nand/nand_util.c')
| -rw-r--r-- | drivers/mtd/nand/nand_util.c | 20 | 
1 files changed, 10 insertions, 10 deletions
| diff --git a/drivers/mtd/nand/nand_util.c b/drivers/mtd/nand/nand_util.c index 88206d067..fc16282c2 100644 --- a/drivers/mtd/nand/nand_util.c +++ b/drivers/mtd/nand/nand_util.c @@ -315,7 +315,7 @@ int nand_lock(struct mtd_info *mtd, int tight)   *			  NAND_LOCK_STATUS_UNLOCK: page unlocked   *   */ -int nand_get_lock_status(struct mtd_info *mtd, ulong offset) +int nand_get_lock_status(struct mtd_info *mtd, loff_t offset)  {  	int ret = 0;  	int chipnr; @@ -436,7 +436,7 @@ int nand_unlock(struct mtd_info *mtd, ulong start, ulong length)   * @param length image length   * @return image length including bad blocks   */ -static size_t get_len_incl_bad (nand_info_t *nand, size_t offset, +static size_t get_len_incl_bad (nand_info_t *nand, loff_t offset,  				const size_t length)  {  	size_t len_incl_bad = 0; @@ -473,7 +473,7 @@ static size_t get_len_incl_bad (nand_info_t *nand, size_t offset,   * @param buf           buffer to read from   * @return		0 in case of success   */ -int nand_write_skip_bad(nand_info_t *nand, size_t offset, size_t *length, +int nand_write_skip_bad(nand_info_t *nand, loff_t offset, size_t *length,  			u_char *buffer)  {  	int rval; @@ -498,7 +498,7 @@ int nand_write_skip_bad(nand_info_t *nand, size_t offset, size_t *length,  	if (len_incl_bad == *length) {  		rval = nand_write (nand, offset, length, buffer);  		if (rval != 0) -			printf ("NAND write to offset %zx failed %d\n", +			printf ("NAND write to offset %llx failed %d\n",  				offset, rval);  		return rval; @@ -509,7 +509,7 @@ int nand_write_skip_bad(nand_info_t *nand, size_t offset, size_t *length,  		size_t write_size;  		if (nand_block_isbad (nand, offset & ~(nand->erasesize - 1))) { -			printf ("Skip bad block 0x%08zx\n", +			printf ("Skip bad block 0x%08llx\n",  				offset & ~(nand->erasesize - 1));  			offset += nand->erasesize - block_offset;  			continue; @@ -522,7 +522,7 @@ int nand_write_skip_bad(nand_info_t *nand, size_t offset, size_t *length,  		rval = nand_write (nand, offset, &write_size, p_buffer);  		if (rval != 0) { -			printf ("NAND write to offset %zx failed %d\n", +			printf ("NAND write to offset %llx failed %d\n",  				offset, rval);  			*length -= left_to_write;  			return rval; @@ -550,7 +550,7 @@ int nand_write_skip_bad(nand_info_t *nand, size_t offset, size_t *length,   * @param buffer buffer to write to   * @return 0 in case of success   */ -int nand_read_skip_bad(nand_info_t *nand, size_t offset, size_t *length, +int nand_read_skip_bad(nand_info_t *nand, loff_t offset, size_t *length,  		       u_char *buffer)  {  	int rval; @@ -568,7 +568,7 @@ int nand_read_skip_bad(nand_info_t *nand, size_t offset, size_t *length,  	if (len_incl_bad == *length) {  		rval = nand_read (nand, offset, length, buffer);  		if (rval != 0) -			printf ("NAND read from offset %zx failed %d\n", +			printf ("NAND read from offset %llx failed %d\n",  				offset, rval);  		return rval; @@ -579,7 +579,7 @@ int nand_read_skip_bad(nand_info_t *nand, size_t offset, size_t *length,  		size_t read_length;  		if (nand_block_isbad (nand, offset & ~(nand->erasesize - 1))) { -			printf ("Skipping bad block 0x%08zx\n", +			printf ("Skipping bad block 0x%08llx\n",  				offset & ~(nand->erasesize - 1));  			offset += nand->erasesize - block_offset;  			continue; @@ -592,7 +592,7 @@ int nand_read_skip_bad(nand_info_t *nand, size_t offset, size_t *length,  		rval = nand_read (nand, offset, &read_length, p_buffer);  		if (rval != 0) { -			printf ("NAND read from offset %zx failed %d\n", +			printf ("NAND read from offset %llx failed %d\n",  				offset, rval);  			*length -= left_to_read;  			return rval; |