diff options
author | Li-Ta Lo <ollie@lanl.gov> | 2005-11-26 21:55:36 +0000 |
---|---|---|
committer | Li-Ta Lo <ollie@lanl.gov> | 2005-11-26 21:55:36 +0000 |
commit | 1a4f0707bb33836953ffe90f6216ee20210cd1fa (patch) | |
tree | 72737cc64699dfdb0cbcee0be4db57ca859f74dd /util/flashrom/flash.h | |
parent | f622d598db3a6fb7001b6b63e7184272eb19db72 (diff) |
flasrom update from Stefan, resovle issue 21
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2111 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/flashrom/flash.h')
-rw-r--r-- | util/flashrom/flash.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/util/flashrom/flash.h b/util/flashrom/flash.h index 3dfefe259a..f477da5516 100644 --- a/util/flashrom/flash.h +++ b/util/flashrom/flash.h @@ -3,25 +3,28 @@ #include <sys/io.h> #include <unistd.h> +#include <stdint.h> struct flashchip { char *name; int manufacture_id; int model_id; - volatile char *virt_addr; + volatile uint8_t *virt_addr; int total_size; int page_size; int (*probe) (struct flashchip * flash); int (*erase) (struct flashchip * flash); - int (*write) (struct flashchip * flash, unsigned char *buf); - int (*read) (struct flashchip * flash, unsigned char *buf); + int (*write) (struct flashchip * flash, uint8_t *buf); + int (*read) (struct flashchip * flash, uint8_t *buf); int fd_mem; - volatile char *virt_addr_2; + volatile uint8_t *virt_addr_2; }; +extern struct flashchip flashchips[]; + #define AMD_ID 0x01 #define AM_29F040B 0xA4 |