diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2004-09-20 04:24:01 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2004-09-20 04:24:01 +0000 |
commit | 5053629a13bd33cf3faeeaa7e0b0850e0c5b0100 (patch) | |
tree | 01e0ef47f5d7d3a6661958a794246c568ffb5b06 /sys/dev/pci | |
parent | aceba8066576086a116e1c65643645028b827055 (diff) |
enable code to disable dynamic standby mode on 82550's
ok beck@
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/if_fxp_pci.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/if_fxp_pci.c b/sys/dev/pci/if_fxp_pci.c index b8d142961c1..08a360d4a54 100644 --- a/sys/dev/pci/if_fxp_pci.c +++ b/sys/dev/pci/if_fxp_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_fxp_pci.c,v 1.30 2004/09/18 20:31:45 beck Exp $ */ +/* $OpenBSD: if_fxp_pci.c,v 1.31 2004/09/20 04:24:00 brad Exp $ */ /* * Copyright (c) 1995, David Greenman @@ -228,7 +228,8 @@ fxp_pci_attach(parent, self, aux) (PCI_PRODUCT(pa->pa_id) == 0x2449 || (PCI_PRODUCT(pa->pa_id) > 0x1030 && PCI_PRODUCT(pa->pa_id) < 0x1039) || - (PCI_PRODUCT(pa->pa_id) == 0x1229 && (rev == 8 || rev == 9)))) + (PCI_PRODUCT(pa->pa_id) == 0x1229 && (rev == 8 || rev == 9 || + rev == 12 || rev == 13)))) sc->sc_flags |= FXPF_DISABLE_STANDBY; /* enable bus mastering */ |