1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-02 22:43:17 +02:00

Data type consistence

Corresponding to flashrom svn r20 and coreboot v2 svn r1487.
This commit is contained in:
Ollie Lho
2004-03-27 00:31:03 +00:00
parent 8b8897a5fd
commit afdfce8cbc
2 changed files with 7 additions and 10 deletions

View File

@ -4,9 +4,8 @@
extern int probe_jedec(struct flashchip *flash);
extern int erase_chip_jedec(struct flashchip *flash);
extern int write_jedec(struct flashchip *flash, unsigned char *buf);
extern int erase_sector_jedec(volatile char *bios, unsigned int page);
extern int write_sector_jedec(volatile unsigned char *bios,
unsigned char *src,
extern int erase_sector_jedec(volatile unsigned char *bios, unsigned int page);
extern int write_sector_jedec(volatile unsigned char *bios, unsigned char *src,
volatile unsigned char *dst,
unsigned int page_size);