summaryrefslogtreecommitdiff
path: root/src/soc/intel/common/block/ipu
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/common/block/ipu')
-rw-r--r--src/soc/intel/common/block/ipu/ipu.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/soc/intel/common/block/ipu/ipu.c b/src/soc/intel/common/block/ipu/ipu.c
index a9d2bc093b..ead4094af3 100644
--- a/src/soc/intel/common/block/ipu/ipu.c
+++ b/src/soc/intel/common/block/ipu/ipu.c
@@ -12,16 +12,16 @@ struct device_operations ipu_pci_ops = {
};
static const uint16_t pci_device_ids[] = {
- PCI_DEVICE_ID_INTEL_TGL_IPU,
- PCI_DEVICE_ID_INTEL_TGL_H_IPU,
- PCI_DEVICE_ID_INTEL_JSL_IPU,
- PCI_DEVICE_ID_INTEL_ADL_IPU,
- PCI_DEVICE_ID_INTEL_ADL_N_IPU,
+ PCI_DID_INTEL_TGL_IPU,
+ PCI_DID_INTEL_TGL_H_IPU,
+ PCI_DID_INTEL_JSL_IPU,
+ PCI_DID_INTEL_ADL_IPU,
+ PCI_DID_INTEL_ADL_N_IPU,
0
};
static const struct pci_driver intel_ipu __pci_driver = {
.ops = &ipu_pci_ops,
- .vendor = PCI_VENDOR_ID_INTEL,
+ .vendor = PCI_VID_INTEL,
.devices = pci_device_ids,
};