Commit cbe370e6 authored by Steven Zakulec's avatar Steven Zakulec Committed by Stefan Tauner
Browse files

Add voltage ranges to the flashchips


Corresponding to flashrom svn r1323.
Signed-off-by: default avatarSteven Zakulec <spzakulec@gmail.com>
Acked-by: default avatarStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Acked-by: default avatarPeter Stuge <peter@stuge.se>
parent db45ab5e
......@@ -145,6 +145,10 @@ struct flashchip {
int (*unlock) (struct flashchip *flash);
int (*write) (struct flashchip *flash, uint8_t *buf, int start, int len);
int (*read) (struct flashchip *flash, uint8_t *buf, int start, int len);
struct {
uint16_t min;
uint16_t max;
} voltage;
/* Some flash devices have an additional register space. */
chipaddr virtual_memory;
......
This diff is collapsed.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment