aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/apollolake/sd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/apollolake/sd.c')
-rw-r--r--src/soc/intel/apollolake/sd.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/soc/intel/apollolake/sd.c b/src/soc/intel/apollolake/sd.c
index 2f38061b27..e2b5ab4fbe 100644
--- a/src/soc/intel/apollolake/sd.c
+++ b/src/soc/intel/apollolake/sd.c
@@ -75,8 +75,14 @@ static struct device_operations dev_ops = {
#endif
};
+static const unsigned short pci_device_ids[] = {
+ PCI_DEVICE_ID_INTEL_APL_SD,
+ PCI_DEVICE_ID_INTEL_GLK_SD,
+ 0,
+};
+
static const struct pci_driver pch_sd __pci_driver = {
.ops = &dev_ops,
.vendor = PCI_VENDOR_ID_INTEL,
- .device = 0x5aca
+ .devices= pci_device_ids,
};