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

Changes from NIKI

Corresponding to coreboot v1 svn r873.
This commit is contained in:
Ronald G. Minnich
2003-09-12 22:41:53 +00:00
parent ceec420c3d
commit eaab50bb32
22 changed files with 622 additions and 82 deletions

View File

@ -1,6 +1,9 @@
#ifndef __82802AB_H__
#define __82802AB_H__ 1
extern int probe_82802ab (struct flashchip * flash);
extern int erase_82802ab (struct flashchip * flash);
extern int write_82802ab (struct flashchip * flash, char * buf);
extern int write_82802ab (struct flashchip * flash, unsigned char * buf);
extern __inline__ void toggle_ready_82802ab (volatile char * dst)
{
@ -42,3 +45,4 @@ extern __inline__ void protect_82802ab (volatile char * bios)
usleep(200);
}
#endif /* !__82802AB_H__ */