summaryrefslogtreecommitdiffstats
path: root/sys/dev/ed
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1995-02-26 20:03:53 +0000
committerdg <dg@FreeBSD.org>1995-02-26 20:03:53 +0000
commitea28ef1e7a0be9228295427fd60129e67a17d33a (patch)
treea5e8eee01a3904ccb8289eaa7d3ac5fada0fdae0 /sys/dev/ed
parent73314bbde963d8cd95c94723f90545bbe2208cfc (diff)
downloadFreeBSD-src-ea28ef1e7a0be9228295427fd60129e67a17d33a.zip
FreeBSD-src-ea28ef1e7a0be9228295427fd60129e67a17d33a.tar.gz
Doubled 'maxwait' to 200 (240us).
Submitted by: brian@mediacity.com (Brian Litzinger)
Diffstat (limited to 'sys/dev/ed')
-rw-r--r--sys/dev/ed/if_ed.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ed/if_ed.c b/sys/dev/ed/if_ed.c
index cce3b45..718c670 100644
--- a/sys/dev/ed/if_ed.c
+++ b/sys/dev/ed/if_ed.c
@@ -13,7 +13,7 @@
* the SMC Elite Ultra (8216), the 3Com 3c503, the NE1000 and NE2000,
* and a variety of similar clones.
*
- * $Id: if_ed.c,v 1.65 1995/01/23 19:06:06 davidg Exp $
+ * $Id: if_ed.c,v 1.66 1995/02/25 15:56:00 davidg Exp $
*/
#include "ed.h"
@@ -2269,7 +2269,7 @@ ed_pio_writemem(sc, src, dst, len)
unsigned short dst;
unsigned short len;
{
- int maxwait = 100; /* about 120us */
+ int maxwait = 200; /* about 240us */
/* select page 0 registers */
outb(sc->nic_addr + ED_P0_CR, ED_CR_RD2 | ED_CR_STA);
@@ -2315,7 +2315,7 @@ ed_pio_write_mbufs(sc, m, dst)
{
unsigned short total_len, dma_len;
struct mbuf *mp;
- int maxwait = 100; /* about 120us */
+ int maxwait = 200; /* about 240us */
/* First, count up the total number of bytes to copy */
for (total_len = 0, mp = m; mp; mp = mp->m_next)
OpenPOWER on IntegriCloud