summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/picasso/fch.c
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2022-04-19 21:44:22 +0200
committerFelix Held <felix-coreboot@felixheld.de>2022-05-06 22:15:04 +0000
commit4c684877d13ba634b3f8ebfaf51fc386d031e882 (patch)
treede4a9ad947963c5ac19fce5b6d006d20814dd557 /src/soc/amd/picasso/fch.c
parenteb8bbb6c041b360b0a463c56b820ef372d1bac50 (diff)
downloadcoreboot-4c684877d13ba634b3f8ebfaf51fc386d031e882.tar.gz
coreboot-4c684877d13ba634b3f8ebfaf51fc386d031e882.tar.bz2
coreboot-4c684877d13ba634b3f8ebfaf51fc386d031e882.zip
soc/amd/picasso: Use read*p
This avoids compiler warnings on 64bit builds that complains about casting pointer to non matching integer size. Change-Id: I29fdb73ae1c0508796a21b650bf4fd1ac6688021 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/63726 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc/amd/picasso/fch.c')
-rw-r--r--src/soc/amd/picasso/fch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/picasso/fch.c b/src/soc/amd/picasso/fch.c
index 24565a75fe24..00402213d8cc 100644
--- a/src/soc/amd/picasso/fch.c
+++ b/src/soc/amd/picasso/fch.c
@@ -109,7 +109,7 @@ static void sb_rfmux_config_override(void)
for (port = 0; port < USB_PD_PORT_COUNT; port++) {
if (cfg->usb_pd_config_override[port].rfmux_override_en) {
- write32((void *)(USB_PD_PORT_CONTROL + PD_PORT_MUX_OFFSET(port)),
+ write32p(USB_PD_PORT_CONTROL + PD_PORT_MUX_OFFSET(port),
cfg->usb_pd_config_override[port].rfmux_config
| USB_PD_RFMUX_OVERRIDE);
}