summaryrefslogtreecommitdiffstats
path: root/sys/dev/amr
diff options
context:
space:
mode:
authorambrisko <ambrisko@FreeBSD.org>2004-08-14 02:48:13 +0000
committerambrisko <ambrisko@FreeBSD.org>2004-08-14 02:48:13 +0000
commitd13c291376f6db268317eb7ca00647e278c0aafe (patch)
tree0e60943dda3823b4ca4be01cae0712b6d0ff4862 /sys/dev/amr
parentde1943c97f4e1f9a9b3a73c278d126a8eace3ef4 (diff)
downloadFreeBSD-src-d13c291376f6db268317eb7ca00647e278c0aafe.zip
FreeBSD-src-d13c291376f6db268317eb7ca00647e278c0aafe.tar.gz
Add new PCI device ID for PERC4/DI.
Diffstat (limited to 'sys/dev/amr')
-rw-r--r--sys/dev/amr/amr_pci.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/amr/amr_pci.c b/sys/dev/amr/amr_pci.c
index 73b4d75..aa4094b 100644
--- a/sys/dev/amr/amr_pci.c
+++ b/sys/dev/amr/amr_pci.c
@@ -130,6 +130,7 @@ static struct
{0x1000, 0x0407, 0},
{0x1028, 0x000e, PROBE_SIGNATURE}, /* perc4/di i960 */
{0x1028, 0x000f, 0}, /* perc4/di Verde*/
+ {0x1028, 0x0013, 0}, /* perc4/di */
{0, 0, 0}
};
@@ -181,7 +182,8 @@ amr_pci_attach(device_t dev)
*/
command = pci_read_config(dev, PCIR_COMMAND, 1);
if ((pci_get_device(dev) == 0x1960) || (pci_get_device(dev) == 0x0407) ||
- (pci_get_device(dev) == 0x000e) || (pci_get_device(dev) == 0x000f)) {
+ (pci_get_device(dev) == 0x000e) || (pci_get_device(dev) == 0x000f) ||
+ (pci_get_device(dev) == 0x0013)) {
/*
* Make sure we are going to be able to talk to this board.
*/
OpenPOWER on IntegriCloud