diff options
author | jlemon <jlemon@FreeBSD.org> | 2000-05-23 19:27:43 +0000 |
---|---|---|
committer | jlemon <jlemon@FreeBSD.org> | 2000-05-23 19:27:43 +0000 |
commit | a59616f51a9be8065a881e22420fcce648129f82 (patch) | |
tree | 58a10c44eb0d435929d00faa1f7c719c77f77872 /sys | |
parent | feb0f1cfbd039bfdef4babf866d12eaefc387d73 (diff) | |
download | FreeBSD-src-a59616f51a9be8065a881e22420fcce648129f82.zip FreeBSD-src-a59616f51a9be8065a881e22420fcce648129f82.tar.gz |
Add code which actually checks for the NCR PCI id so it can be used.
Diffstat (limited to 'sys')
-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 8c3d1f1..447ee15 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); |