Fred Reitberger has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/74528 )
Change subject: soc/amd/phoenix/xhci: Correct counting of xhci_sci_sources ......................................................................
soc/amd/phoenix/xhci: Correct counting of xhci_sci_sources
Signed-off-by: Fred Reitberger reitbergerfred@gmail.com Change-Id: Iabba97e003d1a5140c98e3fc5a3496f66f8795c2 --- M src/soc/amd/phoenix/xhci.c 1 file changed, 11 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/28/74528/1
diff --git a/src/soc/amd/phoenix/xhci.c b/src/soc/amd/phoenix/xhci.c index ef1b60a..06481ed 100644 --- a/src/soc/amd/phoenix/xhci.c +++ b/src/soc/amd/phoenix/xhci.c @@ -49,7 +49,7 @@
static void configure_xhci_sci(void *unused) { - gpe_configure_sci(xhci_sci_sources, ARRAY_SIZE(xhci_sci_sources) - 1); + gpe_configure_sci(xhci_sci_sources, ARRAY_SIZE(xhci_sci_sources)); }
BOOT_STATE_INIT_ENTRY(BS_POST_DEVICE, BS_ON_ENTRY, configure_xhci_sci, NULL);