diff options
author | Jonathan Lemon <jlemon@FreeBSD.org> | 2000-05-23 19:27:43 +0000 |
---|---|---|
committer | Jonathan Lemon <jlemon@FreeBSD.org> | 2000-05-23 19:27:43 +0000 |
commit | cbd280c6e0ecff8141b41ba23339c0e39287da15 (patch) | |
tree | 5c84c411ee5036af7537e5c836e607e7b3008cca | |
parent | 5996ceaaa989c768c362e528e3d95129bbd981bd (diff) | |
download | src-cbd280c6e0ecff8141b41ba23339c0e39287da15.tar.gz src-cbd280c6e0ecff8141b41ba23339c0e39287da15.zip |
Add code which actually checks for the NCR PCI id so it can be used.
Notes
Notes:
svn path=/head/; revision=60830
-rw-r--r-- | sys/dev/ida/ida_pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ida/ida_pci.c b/sys/dev/ida/ida_pci.c index 8c3d1f114e9b..447ee1592d7d 100644 --- a/sys/dev/ida/ida_pci.c +++ b/sys/dev/ida/ida_pci.c @@ -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); |