aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/cannonlake/xhci.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/cannonlake/xhci.c')
-rw-r--r--src/soc/intel/cannonlake/xhci.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/intel/cannonlake/xhci.c b/src/soc/intel/cannonlake/xhci.c
index 46cc120a06..0fb093682d 100644
--- a/src/soc/intel/cannonlake/xhci.c
+++ b/src/soc/intel/cannonlake/xhci.c
@@ -1,5 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0-only */
+#include <device/pci_type.h>
#include <intelblocks/xhci.h>
#define XHCI_USB2_PORT_STATUS_REG 0x480
@@ -14,7 +15,7 @@ static const struct xhci_usb_info usb_info = {
.num_usb3_ports = XHCI_USB3_PORT_NUM,
};
-const struct xhci_usb_info *soc_get_xhci_usb_info(void)
+const struct xhci_usb_info *soc_get_xhci_usb_info(pci_devfn_t xhci_dev)
{
return &usb_info;
}