aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/soc/intel/common/block/xhci/xhci.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/soc/intel/common/block/xhci/xhci.c b/src/soc/intel/common/block/xhci/xhci.c
index 32fad93d3a..d1f7579266 100644
--- a/src/soc/intel/common/block/xhci/xhci.c
+++ b/src/soc/intel/common/block/xhci/xhci.c
@@ -30,10 +30,10 @@ static struct device_operations usb_xhci_ops = {
};
static const unsigned short pci_device_ids[] = {
- 0x5aa8, /* ApolloLake */
- 0x31a8, /* GLK */
- 0x9d2f, /* SunRisePoint LP */
- 0xa12f, /* KBL-H*/
+ PCI_DEVICE_ID_INTEL_APOLLOLAKE_XHCI,
+ PCI_DEVICE_ID_INTEL_GLK_XHCI,
+ PCI_DEVICE_ID_INTEL_SPT_LP_XHCI,
+ PCI_DEVICE_ID_INTEL_KBP_H_XHCI,
0
};