Add code which actually checks for the NCR PCI id so it can be used.

This commit is contained in:
Jonathan Lemon 2000-05-23 19:27:43 +00:00
parent 5996ceaaa9
commit cbd280c6e0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=60830

View file

@ -199,7 +199,8 @@ ida_pci_probe(device_t dev)
if (id == IDA_DEVICEID_SMART)
board = ida_pci_match(pci_get_subdevice(dev));
if (id == IDA_DEVICEID_DEC_SMART)
if (id == IDA_DEVICEID_DEC_SMART ||
id == IDA_DEVICEID_NCR_53C1510)
board = ida_pci_match(id);
if (board != NULL) {
device_set_desc(dev, board->desc);