diff options
| author | Eric Moore <emoore@FreeBSD.org> | 2002-11-21 16:06:10 +0000 |
|---|---|---|
| committer | Eric Moore <emoore@FreeBSD.org> | 2002-11-21 16:06:10 +0000 |
| commit | ca4722f57eba5bdddf4b40fb9e9dc1277d4340b0 (patch) | |
| tree | 3d9c1220c1cba1c45849d449e701eff98d501414 /sys/dev/amr/amr_pci.c | |
| parent | 147e2e207ed5e2ae1bbea8ad13f1364cf7f3583a (diff) | |
Notes
Diffstat (limited to 'sys/dev/amr/amr_pci.c')
| -rw-r--r-- | sys/dev/amr/amr_pci.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/amr/amr_pci.c b/sys/dev/amr/amr_pci.c index 18141bdf6eae..7fcc6d4c2e0b 100644 --- a/sys/dev/amr/amr_pci.c +++ b/sys/dev/amr/amr_pci.c @@ -128,6 +128,8 @@ static struct {0x101e, 0x1960, 0}, {0x1000, 0x1960, PROBE_SIGNATURE}, {0x1000, 0x0407, 0}, + {0x1028, 0x000e, PROBE_SIGNATURE}, /* perc4/di i960 */ + {0x1028, 0x000f, 0}, /* perc4/di Verde*/ {0, 0, 0} }; @@ -178,7 +180,8 @@ amr_pci_attach(device_t dev) * Determine board type. */ command = pci_read_config(dev, PCIR_COMMAND, 1); - if ((pci_get_device(dev) == 0x1960) || (pci_get_device(dev) == 0x0407)){ + if ((pci_get_device(dev) == 0x1960) || (pci_get_device(dev) == 0x0407) || + (pci_get_device(dev) == 0x000e) || (pci_get_device(dev) == 0x000f)) { /* * Make sure we are going to be able to talk to this board. */ |
