summaryrefslogtreecommitdiff
path: root/util/flashrom/pm49fl004.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/flashrom/pm49fl004.c')
-rw-r--r--util/flashrom/pm49fl004.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/flashrom/pm49fl004.c b/util/flashrom/pm49fl004.c
index baa80a86a8..9995177d21 100644
--- a/util/flashrom/pm49fl004.c
+++ b/util/flashrom/pm49fl004.c
@@ -32,15 +32,15 @@ extern int exclude_start_page, exclude_end_page;
int write_49fl004(struct flashchip *flash, uint8_t *buf)
{
int i;
- int total_size = flash->total_size * 1024, page_size =
- flash->page_size;
+ int total_size = flash->total_size * 1024;
+ int page_size = flash->page_size;
volatile uint8_t *bios = flash->virt_addr;
-
+
printf("Programming Page: ");
for (i = 0; i < total_size / page_size; i++) {
- if( (i>=exclude_start_page) && (i<exclude_end_page))
+ if ((i >= exclude_start_page) && (i < exclude_end_page))
continue;
-
+
/* erase the page before programming */
erase_block_jedec(bios, i * page_size);