diff options
author | jlemon <jlemon@FreeBSD.org> | 2000-05-22 13:59:32 +0000 |
---|---|---|
committer | jlemon <jlemon@FreeBSD.org> | 2000-05-22 13:59:32 +0000 |
commit | 4a00d6a024a8331ebe9b8886320aa74c21101faf (patch) | |
tree | 113f340036d055967c246da345fb2fc0b2c4a801 /sys/dev/ida/ida_pci.c | |
parent | e6350a4f3c378516ae689fc89127554e715ec400 (diff) | |
download | FreeBSD-src-4a00d6a024a8331ebe9b8886320aa74c21101faf.zip FreeBSD-src-4a00d6a024a8331ebe9b8886320aa74c21101faf.tar.gz |
Add PCI ID for NEC/Compaq controller.
Diffstat (limited to 'sys/dev/ida/ida_pci.c')
-rw-r--r-- | sys/dev/ida/ida_pci.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/ida/ida_pci.c b/sys/dev/ida/ida_pci.c index 886caef..8c3d1f1 100644 --- a/sys/dev/ida/ida_pci.c +++ b/sys/dev/ida/ida_pci.c @@ -52,8 +52,9 @@ #define IDA_PCI_MEMADDR (PCIR_MAPS + 4) /* Mem I/O Address */ -#define IDA_DEVICEID_SMART 0xAE100E11 -#define IDA_DEVICEID_DEC_SMART 0x00461011 +#define IDA_DEVICEID_SMART 0xAE100E11 +#define IDA_DEVICEID_DEC_SMART 0x00461011 +#define IDA_DEVICEID_NCR_53C1510 0x00101000 static int ida_v3_fifo_full(struct ida_softc *ida) @@ -152,6 +153,8 @@ static struct ida_board board_id[] = { { IDA_DEVICEID_DEC_SMART, "DEC/Compaq Smart Array 4200 controller", &ida_v4_access }, + { IDA_DEVICEID_NCR_53C1510, + "NCR/Compaq Integrated Array controller", &ida_v4_access }, { 0, "", 0 }, }; |