summaryrefslogtreecommitdiffstats
path: root/sst28sf040.c
diff options
context:
space:
mode:
Diffstat (limited to 'sst28sf040.c')
-rw-r--r--sst28sf040.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/sst28sf040.c b/sst28sf040.c
index 2de876b..ba22093 100644
--- a/sst28sf040.c
+++ b/sst28sf040.c
@@ -118,15 +118,9 @@ static int erase_28sf040(struct flashchip *flash)
int write_28sf040(struct flashchip *flash, uint8_t *buf)
{
- int i;
- int total_size = flash->total_size * 1024;
- int page_size = flash->page_size;
-
unprotect_28sf040(flash);
- for (i = 0; i < total_size / page_size; i++) {
- write_sector_28sf040(flash, buf + i * page_size, i * page_size, page_size);
- }
+ write_sector_28sf040(flash, buf, 0, flash->total_size * 1024);
protect_28sf040(flash);
OpenPOWER on IntegriCloud