mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-02 22:43:17 +02:00
Make struct flashchip a field in struct flashctx instead of a complete copy
All the driver conversion work and cleanup has been done by Stefan. flashrom.c and cli_classic.c are a joint work of Stefan and Carl-Daniel. Corresponding to flashrom svn r1579. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
This commit is contained in:
8
w39.c
8
w39.c
@ -138,11 +138,11 @@ static int printlock_w39_common(struct flashctx *flash, unsigned int offset)
|
||||
|
||||
static int printlock_w39_fwh(struct flashctx *flash)
|
||||
{
|
||||
unsigned int i, total_size = flash->total_size * 1024;
|
||||
unsigned int i, total_size = flash->chip->total_size * 1024;
|
||||
int ret = 0;
|
||||
|
||||
/* Print lock status of the complete chip */
|
||||
for (i = 0; i < total_size; i += flash->page_size)
|
||||
for (i = 0; i < total_size; i += flash->chip->page_size)
|
||||
ret |= printlock_w39_fwh_block(flash, i);
|
||||
|
||||
return ret;
|
||||
@ -150,10 +150,10 @@ static int printlock_w39_fwh(struct flashctx *flash)
|
||||
|
||||
static int unlock_w39_fwh(struct flashctx *flash)
|
||||
{
|
||||
unsigned int i, total_size = flash->total_size * 1024;
|
||||
unsigned int i, total_size = flash->chip->total_size * 1024;
|
||||
|
||||
/* Unlock the complete chip */
|
||||
for (i = 0; i < total_size; i += flash->page_size)
|
||||
for (i = 0; i < total_size; i += flash->chip->page_size)
|
||||
if (unlock_w39_fwh_block(flash, i))
|
||||
return -1;
|
||||
|
||||
|
Reference in New Issue
Block a user