diff options
author | Subrata Banik <subrata.banik@intel.com> | 2017-05-03 13:29:19 +0530 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-05-05 23:26:10 +0200 |
commit | fc98c0195eb1e9ccf0f7757689a8070097ffd0e8 (patch) | |
tree | ed617160c2dc8fdd6146381afb4335f04bbf8d99 /src/soc/intel/common | |
parent | 669a1a04b69413d18c8a4336d1c078b1b07ffc64 (diff) |
common/block/xhci: Get XHCI PCI ID from device/pci_ids.h
Change-Id: I33d92a173055ea18b8675c720f01dd5bc77befa3
Signed-off-by: Subrata Banik <subrata.banik@intel.com>
Reviewed-on: https://review.coreboot.org/19536
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/common')
-rw-r--r-- | src/soc/intel/common/block/xhci/xhci.c | 8 |
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 }; |