Commit 8864710c authored by Sean Nelson's avatar Sean Nelson
Browse files

Fix a few typos from the last commit


Corresponding to flashrom svn r966.
Signed-off-by: default avatarSean Nelson <audiohacked@gmail.com>
Acked-by: default avatarSean Nelson <audiohacked@gmail.com>
parent dee4a83e
......@@ -206,10 +206,10 @@ int write_82802ab(struct flashchip *flash, uint8_t *buf)
return 0;
}
int unlock_28f004s5(struct flashrom *flash)
int unlock_28f004s5(struct flashchip *flash)
{
chipaddr bios = flash->virtual_memory;
uint8_t mcfg, bcfg, need_unlock = 0, can_unlock = 0;
uint8_t mcfg, bcfg, need_unlock = 0, can_unlock = 0, i;
/* Clear status register */
chip_writeb(0x50, bios);
......
......@@ -62,6 +62,7 @@ int write_82802ab(struct flashchip *flash, uint8_t *buf);
void print_status_82802ab(uint8_t status);
void write_page_82802ab(chipaddr bios, uint8_t *src, chipaddr dst, int page_size);
int unlock_82802ab(struct flashchip *flash);
int unlock_28f004s5(struct flashchip *flash);
/* jedec.c */
uint8_t oddparity(uint8_t val);
......
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