summaryrefslogtreecommitdiffstats
path: root/pm49fl00x.c
diff options
context:
space:
mode:
Diffstat (limited to 'pm49fl00x.c')
-rw-r--r--pm49fl00x.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pm49fl00x.c b/pm49fl00x.c
index 42db2aa96..fe28d2b8e 100644
--- a/pm49fl00x.c
+++ b/pm49fl00x.c
@@ -40,14 +40,14 @@ static void write_lockbits_49fl00x(const struct flashctx *flash,
int unlock_49fl00x(struct flashctx *flash)
{
- write_lockbits_49fl00x(flash, flash->total_size * 1024, 0,
- flash->page_size);
+ write_lockbits_49fl00x(flash, flash->chip->total_size * 1024, 0,
+ flash->chip->page_size);
return 0;
}
int lock_49fl00x(struct flashctx *flash)
{
- write_lockbits_49fl00x(flash, flash->total_size * 1024, 1,
- flash->page_size);
+ write_lockbits_49fl00x(flash, flash->chip->total_size * 1024, 1,
+ flash->chip->page_size);
return 0;
}