mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-02 22:43:17 +02:00
jedec.c: constify a bit more
Also, include chipdrivers.h to find conflicting types between exported declarations and actual implementations. Corresponding to flashrom svn r1805. Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
This commit is contained in:
@ -136,10 +136,8 @@ int unlock_lh28f008bjt(struct flashctx *flash);
|
||||
|
||||
/* jedec.c */
|
||||
uint8_t oddparity(uint8_t val);
|
||||
void toggle_ready_jedec(struct flashctx *flash, chipaddr dst);
|
||||
void data_polling_jedec(struct flashctx *flash, chipaddr dst, uint8_t data);
|
||||
int write_byte_program_jedec(struct flashctx *flash, chipaddr bios, uint8_t *src,
|
||||
chipaddr dst);
|
||||
void toggle_ready_jedec(const struct flashctx *flash, chipaddr dst);
|
||||
void data_polling_jedec(const struct flashctx *flash, chipaddr dst, uint8_t data);
|
||||
int probe_jedec(struct flashctx *flash);
|
||||
int write_jedec(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len);
|
||||
int write_jedec_1(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len);
|
||||
|
Reference in New Issue
Block a user