mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 06:01:16 +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:
@ -35,7 +35,7 @@ static int write_lockbits_block_49lfxxxc(struct flashchip *flash, unsigned long
|
||||
static int write_lockbits_49lfxxxc(struct flashchip *flash, unsigned char bits)
|
||||
{
|
||||
chipaddr registers = flash->virtual_registers;
|
||||
int i, left = flash->total_size * 1024;
|
||||
unsigned int i, left = flash->total_size * 1024;
|
||||
unsigned long address;
|
||||
|
||||
msg_cdbg("\nbios=0x%08lx\n", registers);
|
||||
|
Reference in New Issue
Block a user