diff options
author | joerg <joerg@FreeBSD.org> | 1995-08-15 19:56:59 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1995-08-15 19:56:59 +0000 |
commit | c1092a7608a12f30af786a19e3ee9e1e2c8b1b7e (patch) | |
tree | 660348f776dce6e4b034049916150f761ce57543 /sys/dev/mcd | |
parent | 1d402e8a8dae296d15fceb0f14c56c80dc857007 (diff) | |
download | FreeBSD-src-c1092a7608a12f30af786a19e3ee9e1e2c8b1b7e.zip FreeBSD-src-c1092a7608a12f30af786a19e3ee9e1e2c8b1b7e.tar.gz |
Increase the DELAY_GETREPLY to 5000000. Not dangerous, this is
actually a timeout only. The existing behaviour caused a
mcd0: timeout getreply
at halt/reboot time.
Submitted by: graichen@sirius.physik.fu-berlin.de (Thomas Graichen)
Diffstat (limited to 'sys/dev/mcd')
-rw-r--r-- | sys/dev/mcd/mcd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mcd/mcd.c b/sys/dev/mcd/mcd.c index d976194..233ef93 100644 --- a/sys/dev/mcd/mcd.c +++ b/sys/dev/mcd/mcd.c @@ -40,7 +40,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: mcd.c,v 1.43 1995/05/11 19:26:18 rgrimes Exp $ + * $Id: mcd.c,v 1.44 1995/05/30 08:02:44 rgrimes Exp $ */ static char COPYRIGHT[] = "mcd-driver (C)1993 by H.Veit & B.Moore"; @@ -222,7 +222,7 @@ struct isa_driver mcddriver = { mcd_probe, mcd_attach, "mcd" }; #define RDELAY_WAITREAD 800 #define MIN_DELAY 15 -#define DELAY_GETREPLY 1500000 +#define DELAY_GETREPLY 5000000 static struct kern_devconf kdc_mcd[NMCD] = { { 0, 0, 0, /* filled in by dev_attach */ |