aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ed
diff options
context:
space:
mode:
authorDavid Greenman <dg@FreeBSD.org>1995-02-26 20:03:53 +0000
committerDavid Greenman <dg@FreeBSD.org>1995-02-26 20:03:53 +0000
commitcaffd55fe650be0d82a381e78fef587f1e050b12 (patch)
treea5e8eee01a3904ccb8289eaa7d3ac5fada0fdae0 /sys/dev/ed
parent28fe6ad5e3d3c0ae047e094394ab09d895e95f1d (diff)
Notes
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 cce3b4530147..718c67083773 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)