-Wshadow fixes

Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
This commit is contained in:
Øyvind Harboe
2010-06-14 11:51:25 +02:00
parent 9132f7083d
commit 3e51d893ed
4 changed files with 17 additions and 17 deletions

View File

@@ -25,13 +25,13 @@
unsigned get_flash_name_index(const char *name)
{
const char *index = strrchr(name, '.');
if (NULL == index)
const char *name_index = strrchr(name, '.');
if (NULL == name_index)
return 0;
if (index[1] < '0' || index[1] > '9')
if (name_index[1] < '0' || name_index[1] > '9')
return ~0U;
unsigned requested;
int retval = parse_uint(index + 1, &requested);
int retval = parse_uint(name_index + 1, &requested);
// detect parsing error by forcing past end of bank list
return (ERROR_OK == retval) ? requested : ~0U;
}

View File

@@ -649,7 +649,7 @@ static int lpc3180_write_page(struct nand_device *nand, uint32_t page, uint8_t *
*
**********************************************************************/
int retval,i=0,target_mem_base;
int i=0,target_mem_base;
uint8_t *ecc_flash_buffer;
struct working_area *pworking_area;