diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2001-12-07 18:08:21 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2001-12-07 18:08:21 +0000 |
commit | f02007fd3e843407f08256daff5e2e79c5691137 (patch) | |
tree | 40cec1dd5b44cb47c52667a6adcbade39ef12184 | |
parent | 049c4d2e7d696deb608424e4a4b9dd2b7a4a5f03 (diff) |
Don't disable TRDY/RETRY, this doesn't have the expected behavior.
-rw-r--r-- | sys/dev/pci/ubsec.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/dev/pci/ubsec.c b/sys/dev/pci/ubsec.c index 71231bd174b..3dc6edef437 100644 --- a/sys/dev/pci/ubsec.c +++ b/sys/dev/pci/ubsec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ubsec.c,v 1.75 2001/11/20 20:19:26 jason Exp $ */ +/* $OpenBSD: ubsec.c,v 1.76 2001/12/07 18:08:20 jason Exp $ */ /* * Copyright (c) 2000 Jason L. Wright (jason@thought.net) @@ -172,11 +172,6 @@ ubsec_attach(parent, self, aux) } sc->sc_dmat = pa->pa_dmat; - /* Disable TRDY timeout and RETRY timeout */ - cmd = pci_conf_read(pc, pa->pa_tag, BS_TRDY_TIMEOUT); - cmd &= 0xffff0000; - pci_conf_write(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG, cmd); - if (pci_intr_map(pa, &ih)) { printf(": couldn't map interrupt\n"); bus_space_unmap(sc->sc_st, sc->sc_sh, iosize); |