mirror of
https://review.coreboot.org/flashrom.git
synced 2025-06-30 21:52:36 +02:00
Unsignify lengths and addresses in chip functions and structs
Push those changes forward where needed to prevent new sign conversion warnings where possible. Corresponding to flashrom svn r1470. Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
This commit is contained in:
@ -76,7 +76,7 @@ int erase_sector_28sf040(struct flashchip *flash, unsigned int address, unsigned
|
||||
}
|
||||
|
||||
/* chunksize is 1 */
|
||||
int write_28sf040(struct flashchip *flash, uint8_t *src, int start, int len)
|
||||
int write_28sf040(struct flashchip *flash, uint8_t *src, unsigned int start, unsigned int len)
|
||||
{
|
||||
int i;
|
||||
chipaddr bios = flash->virtual_memory;
|
||||
|
Reference in New Issue
Block a user