diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2022-11-04 20:36:01 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-11-09 14:27:44 +0000 |
commit | 58955be0aab666dc40f7c0f9e31966cc605e2c12 (patch) | |
tree | a3631db0497e24b6c263e39be8c7947f8d708036 | |
parent | e0fc3da747ef5396e948599d04627245565a68b1 (diff) |
soc/intel/common/xhci: Fix building for 64bit
Tested with clang on prodrive/hermes: Boots to payload
Change-Id: I66392bcb4ed94c97dde43342dd29dab15d1dd9ea
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69234
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/soc/intel/common/block/xhci/xhci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/xhci/xhci.c b/src/soc/intel/common/block/xhci/xhci.c index 4a408343a6..a12f875bfe 100644 --- a/src/soc/intel/common/block/xhci/xhci.c +++ b/src/soc/intel/common/block/xhci/xhci.c @@ -27,7 +27,7 @@ static uint8_t *xhci_mem_base(void) if (mem_base == 0 || mem_base == 0xffffffff) return 0; - return (uint8_t *)(mem_base & ~PCI_BASE_ADDRESS_MEM_ATTR_MASK); + return (uint8_t *)(uintptr_t)(mem_base & ~PCI_BASE_ADDRESS_MEM_ATTR_MASK); } void xhci_host_reset(void) |