diff --git a/src/southbridge/intel/bd82x6x/pci.c b/src/southbridge/intel/bd82x6x/pci.c index 895135bdd2..da8208a56f 100644 --- a/src/southbridge/intel/bd82x6x/pci.c +++ b/src/southbridge/intel/bd82x6x/pci.c @@ -45,8 +45,14 @@ static struct device_operations device_ops = { .ops_pci = &pci_dev_ops_pci, }; -static const struct pci_driver pch_pci __pci_driver = { - .ops = &device_ops, - .vendor = PCI_VENDOR_ID_INTEL, - .device = 0x2448, +static const unsigned short pci_device_ids[] = { + 0x2448, /* Mobile */ + 0x244e, /* Desktop */ + 0 +}; + +static const struct pci_driver pch_pci __pci_driver = { + .ops = &device_ops, + .vendor = PCI_VENDOR_ID_INTEL, + .devices = pci_device_ids, };