aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Ambrisko <ambrisko@FreeBSD.org>2004-08-14 02:48:13 +0000
committerDoug Ambrisko <ambrisko@FreeBSD.org>2004-08-14 02:48:13 +0000
commit386aa69b89c1ac33229994859bb9a1ac824a0cf2 (patch)
tree0e60943dda3823b4ca4be01cae0712b6d0ff4862
parent9baf5f2da185607df075144c8604d119bb911c08 (diff)
Notes
-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 73b4d7579f70b..aa4094b5a7bfd 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.
*/