diff options
author | Ollie Lho <ollie@sis.com.tw> | 2004-03-20 16:46:10 +0000 |
---|---|---|
committer | Ollie Lho <ollie@sis.com.tw> | 2004-03-20 16:46:10 +0000 |
commit | 59a2d96b5385103c55a4cd746a481cfae6d788af (patch) | |
tree | ecbd632c87d64c6651f84a705ce4c3861108069d /w49f002u.c | |
parent | 5d2fee0c56b891230d3e1530808b7c28725f16c7 (diff) | |
download | flashrom-59a2d96b5385103c55a4cd746a481cfae6d788af.zip flashrom-59a2d96b5385103c55a4cd746a481cfae6d788af.tar.gz |
Consolidate more jedec standard code
Corresponding to flashrom svn r15 and coreboot v2 svn r1457.
Diffstat (limited to 'w49f002u.c')
-rw-r--r-- | w49f002u.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -32,20 +32,20 @@ #include "jedec.h" #include "w49f002u.h" -int write_49f002 (struct flashchip * flash, unsigned char * buf) +int write_49f002(struct flashchip *flash, unsigned char *buf) { int i; int total_size = flash->total_size * 1024; - volatile char * bios = flash->virt_addr; - volatile char * dst = bios; + volatile char *bios = flash->virt_addr; + volatile char *dst = bios; - erase_jedec(flash); + erase_chip_jedec(flash); - printf ("Programming Page: "); + printf("Programming Page: "); for (i = 0; i < total_size; i++) { /* write to the sector */ if ((i & 0xfff) == 0) - printf ("address: 0x%08lx", (unsigned long)i); + printf("address: 0x%08lx", (unsigned long) i); *(bios + 0x5555) = 0xAA; *(bios + 0x2AAA) = 0x55; *(bios + 0x5555) = 0xA0; @@ -55,9 +55,9 @@ int write_49f002 (struct flashchip * flash, unsigned char * buf) toggle_ready_jedec(dst); if ((i & 0xfff) == 0) - printf ("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b"); + printf("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b"); } printf("\n"); - return(0); + return (0); } |