aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/skylake/irq.c
diff options
context:
space:
mode:
authorPatrick Rudolph <patrick.rudolph@9elements.com>2020-11-30 17:45:42 +0100
committerPatrick Rudolph <siro@das-labor.org>2020-12-02 16:49:12 +0000
commit03a339126b35341b3b1baa85e596602a7facb1ed (patch)
treed9e85542da77fd6e4250121e3d5e6286835ca765 /src/soc/intel/skylake/irq.c
parent484adee53ec00db0e107067f4f87727b9b7bf177 (diff)
soc/intel/skylake: Fix compilation under x86_64
Change-Id: I37382ab06a8f1760e955d1ec76a6a00958b05999 Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48177 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/skylake/irq.c')
-rw-r--r--src/soc/intel/skylake/irq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/skylake/irq.c b/src/soc/intel/skylake/irq.c
index ad75f027a1..2f0fd97a77 100644
--- a/src/soc/intel/skylake/irq.c
+++ b/src/soc/intel/skylake/irq.c
@@ -175,7 +175,7 @@ void soc_irq_settings(FSP_SIL_UPD *params)
intdeventry = ARRAY_SIZE(devintconfig);
/* update irq table */
memcpy((SI_PCH_DEVICE_INTERRUPT_CONFIG *)
- (params->DevIntConfigPtr), devintconfig, intdeventry *
+ (uintptr_t)(params->DevIntConfigPtr), devintconfig, intdeventry *
sizeof(SI_PCH_DEVICE_INTERRUPT_CONFIG));
params->NumOfDevIntConfig = intdeventry;