diff options
Diffstat (limited to 'util/flashrom/w49f002u.c')
-rw-r--r-- | util/flashrom/w49f002u.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/flashrom/w49f002u.c b/util/flashrom/w49f002u.c index 02667cf1a0..15df445b44 100644 --- a/util/flashrom/w49f002u.c +++ b/util/flashrom/w49f002u.c @@ -32,12 +32,12 @@ #include "jedec.h" #include "w49f002u.h" -int write_49f002(struct flashchip *flash, unsigned char *buf) +int write_49f002(struct flashchip *flash, uint8_t *buf) { int i; int total_size = flash->total_size * 1024, page_size = flash->page_size; - volatile char *bios = flash->virt_addr; + volatile uint8_t *bios = flash->virt_addr; erase_chip_jedec(flash); |