lib/reg_script: Add cast to fix compilation on x86_64

Change-Id: Ia713e7dbe8c75b764f7a4ef1a029e64fb2d321fb
Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/48166
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
Patrick Rudolph 2020-11-30 13:38:11 +01:00 committed by Patrick Rudolph
parent 429c77a5e3
commit 2dbbb83ae4
1 changed files with 6 additions and 6 deletions

View File

@ -150,11 +150,11 @@ static uint32_t reg_script_read_mmio(struct reg_script_context *ctx)
switch (step->size) {
case REG_SCRIPT_SIZE_8:
return read8((u8 *)step->reg);
return read8((u8 *)(uintptr_t)step->reg);
case REG_SCRIPT_SIZE_16:
return read16((u16 *)step->reg);
return read16((u16 *)(uintptr_t)step->reg);
case REG_SCRIPT_SIZE_32:
return read32((u32 *)step->reg);
return read32((u32 *)(uintptr_t)step->reg);
}
return 0;
}
@ -165,13 +165,13 @@ static void reg_script_write_mmio(struct reg_script_context *ctx)
switch (step->size) {
case REG_SCRIPT_SIZE_8:
write8((u8 *)step->reg, step->value);
write8((u8 *)(uintptr_t)step->reg, step->value);
break;
case REG_SCRIPT_SIZE_16:
write16((u16 *)step->reg, step->value);
write16((u16 *)(uintptr_t)step->reg, step->value);
break;
case REG_SCRIPT_SIZE_32:
write32((u32 *)step->reg, step->value);
write32((u32 *)(uintptr_t)step->reg, step->value);
break;
}
}