Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/77736?usp=email )
Change subject: soc/amd/common/block: Remove space after a cast ......................................................................
soc/amd/common/block: Remove space after a cast
Change-Id: Icccfbc535e005648e45156fc6810210d0ec86a98 Signed-off-by: Elyes Haouas ehaouas@noos.fr Reviewed-on: https://review.coreboot.org/c/coreboot/+/77736 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Felix Held felix-coreboot@felixheld.de Reviewed-by: Ana Carolina Cabral --- M src/soc/amd/common/block/xhci/elog.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Felix Held: Looks good to me, approved Ana Carolina Cabral: Looks good to me, but someone else must approve build bot (Jenkins): Verified
diff --git a/src/soc/amd/common/block/xhci/elog.c b/src/soc/amd/common/block/xhci/elog.c index 64a2c48..b098e6f4 100644 --- a/src/soc/amd/common/block/xhci/elog.c +++ b/src/soc/amd/common/block/xhci/elog.c @@ -103,7 +103,7 @@ .controller = i_xhci, };
- const struct resource *res = (const struct resource *) &res_store[i_slot].resources[0]; + const struct resource *res = (const struct resource *)(&res_store[i_slot].resources[0]); enum cb_err err = xhci_resource_for_each_supported_usb_cap(res, &context, &xhci_cap_callback);