diff options
author | Li-Ta Lo <ollie@lanl.gov> | 2004-03-20 16:46:10 +0000 |
---|---|---|
committer | Li-Ta Lo <ollie@lanl.gov> | 2004-03-20 16:46:10 +0000 |
commit | fbf43ac5a6d90468b4f32c0ea0fc29bd41fabf87 (patch) | |
tree | 3cdf0a8d629f9e92cb432a41626255f3ae3dd806 /util/flash_and_burn/w49f002u.c | |
parent | 6a1a1102ea2cd8aed7014c90241f8db7b71847f1 (diff) |
consolidate more jedec standard code
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1457 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/flash_and_burn/w49f002u.c')
-rw-r--r-- | util/flash_and_burn/w49f002u.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/util/flash_and_burn/w49f002u.c b/util/flash_and_burn/w49f002u.c index 3fb14d46f8..c6200d0aa3 100644 --- a/util/flash_and_burn/w49f002u.c +++ b/util/flash_and_burn/w49f002u.c @@ -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); } |