diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/common/block/cse/cse.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/cse/cse.c b/src/soc/intel/common/block/cse/cse.c index 7ae9b53450..1346af4909 100644 --- a/src/soc/intel/common/block/cse/cse.c +++ b/src/soc/intel/common/block/cse/cse.c @@ -465,11 +465,17 @@ static struct device_operations cse_ops = { .init = pci_dev_init, }; +static const unsigned short pci_device_ids[] = { + PCI_DEVICE_ID_INTEL_APL_CSE0, + PCI_DEVICE_ID_INTEL_GLK_CSE0, + 0, +}; + static const struct pci_driver cse_driver __pci_driver = { .ops = &cse_ops, .vendor = PCI_VENDOR_ID_INTEL, /* SoC/chipset needs to provide PCI device ID */ - .device = PCI_DEVICE_ID_INTEL_APL_CSE0, + .devices = pci_device_ids, }; #endif |