mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-03 06:53:18 +02:00
Remove useless 'extern' keywords
Corresponding to flashrom svn r137 and coreboot v2 svn r2769. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
This commit is contained in:
@ -91,9 +91,9 @@
|
||||
#define doc_toggle(base) /* 0, 1, 0, 1, 0, 1, ... if a doc is present */ \
|
||||
( (doc_read(base, ECCConfiguration) & 0x04) >> 2 )
|
||||
|
||||
extern int probe_md2802(struct flashchip *flash);
|
||||
extern int read_md2802(struct flashchip *flash, uint8_t *buf);
|
||||
extern int erase_md2802(struct flashchip *flash);
|
||||
extern int write_md2802(struct flashchip *flash, uint8_t *buf);
|
||||
int probe_md2802(struct flashchip *flash);
|
||||
int read_md2802(struct flashchip *flash, uint8_t *buf);
|
||||
int erase_md2802(struct flashchip *flash);
|
||||
int write_md2802(struct flashchip *flash, uint8_t *buf);
|
||||
|
||||
#endif /* !__MSYS_DOC_H__ */
|
||||
|
Reference in New Issue
Block a user