aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/apollolake/dsp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/apollolake/dsp.c')
-rw-r--r--src/soc/intel/apollolake/dsp.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/soc/intel/apollolake/dsp.c b/src/soc/intel/apollolake/dsp.c
index a2d21aa259..76547eef6c 100644
--- a/src/soc/intel/apollolake/dsp.c
+++ b/src/soc/intel/apollolake/dsp.c
@@ -16,7 +16,6 @@
#include <device/device.h>
#include <device/pci.h>
#include <device/pci_ids.h>
-#include <soc/pci_ids.h>
static struct device_operations dsp_dev_ops = {
.read_resources = &pci_dev_read_resources,
@@ -25,8 +24,14 @@ static struct device_operations dsp_dev_ops = {
.scan_bus = &scan_static_bus,
};
+static const unsigned short pci_device_ids[] = {
+ PCI_DEVICE_ID_INTEL_APL_AUDIO,
+ PCI_DEVICE_ID_INTEL_GLK_AUDIO,
+ 0,
+};
+
static const struct pci_driver apollolake_dsp __pci_driver = {
.ops = &dsp_dev_ops,
.vendor = PCI_VENDOR_ID_INTEL,
- .device = PCI_DEVICE_ID_APOLLOLAKE_AUDIO
+ .devices = pci_device_ids,
};