Dinesh Gehlot has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/70272 )
Change subject: soc/intel/meteorlake: Drop casts around ......................................................................
soc/intel/meteorlake: Drop casts around
Signed-off-by: Dinesh Gehlot digehlot@google.com Change-Id: I914190f2d2d0507c84b19340159990f9b62ce101 --- M src/soc/intel/meteorlake/acpi.c 1 file changed, 11 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/72/70272/1
diff --git a/src/soc/intel/meteorlake/acpi.c b/src/soc/intel/meteorlake/acpi.c index 54de566..51e9735 100644 --- a/src/soc/intel/meteorlake/acpi.c +++ b/src/soc/intel/meteorlake/acpi.c @@ -168,7 +168,7 @@
uint32_t soc_read_sci_irq_select(void) { - return read32((void *)soc_read_pmc_base() + IRQ_REG); + return read32p(soc_read_pmc_base() + IRQ_REG); }
static unsigned long soc_fill_dmar(unsigned long current)