diff options
author | 2004-09-20 04:24:00 +0000 | |
---|---|---|
committer | 2004-09-20 04:24:00 +0000 | |
commit | edbe9a38c1c01e06c688c5c8a045837fbd7c94ef (patch) | |
tree | e68a81adbb6fd748ba725e4661b3f99ab9196399 /sys/dev | |
parent | add vflushbuf.9 and vwakeup.9 (diff) | |
download | wireguard-openbsd-edbe9a38c1c01e06c688c5c8a045837fbd7c94ef.tar.xz wireguard-openbsd-edbe9a38c1c01e06c688c5c8a045837fbd7c94ef.zip |
enable code to disable dynamic standby mode on 82550's
ok beck@
Diffstat (limited to 'sys/dev')
-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 */ |