aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorPatrick Rudolph <patrick.rudolph@9elements.com>2020-11-30 13:38:11 +0100
committerPatrick Rudolph <siro@das-labor.org>2020-12-01 16:00:57 +0000
commit2dbbb83ae4823db40ee9cca2016bb21fb2bc6bb4 (patch)
tree47ed4454c47e906e8740d5b31026093fe319aa06 /src/lib
parent429c77a5e3ffab99c7a637d9ed0793df9f0319e3 (diff)
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>
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/reg_script.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/reg_script.c b/src/lib/reg_script.c
index e0ae68cd0e..bad9d9c53e 100644
--- a/src/lib/reg_script.c
+++ b/src/lib/reg_script.c
@@ -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;
}
}