summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/dataflash.c
diff options
context:
space:
mode:
authorAnatolij Gustschin <agust@denx.de>2011-11-15 13:20:53 +0000
committerWolfgang Denk <wd@denx.de>2011-11-16 21:28:47 +0100
commiteec3ae68ad92a5af8642846321daad047e4f9cde (patch)
tree357deaada7c433e5c0e94f70794568dcc89b460b /drivers/mtd/dataflash.c
parenteba46d69b35b8a6d7de8f17328f2cb274988714f (diff)
downloadblackbird-obmc-uboot-eec3ae68ad92a5af8642846321daad047e4f9cde.tar.gz
blackbird-obmc-uboot-eec3ae68ad92a5af8642846321daad047e4f9cde.zip
drivers/mtd/dataflash.c: Fix GCC 4.6 warning
Fix: dataflash.c: In function 'AT91F_DataflashInit': dataflash.c:42:6: warning: variable 'last_part' set but not used [-Wunused-but-set-variable] Signed-off-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'drivers/mtd/dataflash.c')
-rw-r--r--drivers/mtd/dataflash.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/mtd/dataflash.c b/drivers/mtd/dataflash.c
index 96cd395e71..981ccd5b4b 100644
--- a/drivers/mtd/dataflash.c
+++ b/drivers/mtd/dataflash.c
@@ -39,7 +39,6 @@ int AT91F_DataflashInit (void)
int i, j;
int dfcode;
int part;
- int last_part;
int found[CONFIG_SYS_MAX_DATAFLASH_BANKS];
unsigned char protected;
@@ -136,7 +135,6 @@ int AT91F_DataflashInit (void)
dataflash_info[i].Device.pages_size) - 1;
part = 0;
- last_part = 0;
/* set the area addresses */
for(j = 0; j < NB_DATAFLASH_AREA; j++) {
if(found[i]!=0) {
@@ -147,7 +145,6 @@ int AT91F_DataflashInit (void)
dataflash_info[i].Device.area_list[j].end =
dataflash_info[i].end_address +
dataflash_info[i].logical_address;
- last_part = 1;
} else {
dataflash_info[i].Device.area_list[j].end =
area_list[part].end +
OpenPOWER on IntegriCloud