mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Increased delay after reset to 10ms. Suggested by several people, the last
of which was Scott Mace. This fixes a bug where the card would be missed sometimes during the device probe.
This commit is contained in:
parent
b2af64fd03
commit
dd1da8a5af
2 changed files with 4 additions and 4 deletions
|
|
@ -38,7 +38,7 @@
|
|||
*/
|
||||
|
||||
/*
|
||||
* $Id: if_ep.c,v 1.25 1995/04/10 21:24:58 jkh Exp $
|
||||
* $Id: if_ep.c,v 1.26 1995/04/12 20:47:49 wollman Exp $
|
||||
*
|
||||
* Promiscuous mode added and interrupt logic slightly changed
|
||||
* to reduce the number of adapter failures. Transceiver select
|
||||
|
|
@ -210,7 +210,7 @@ ep_look_for_board_at(is)
|
|||
|
||||
/* Look for the ISA boards. Init and leave them actived */
|
||||
outb(id_port, 0xc0); /* Global reset */
|
||||
DELAY(1000);
|
||||
DELAY(10000);
|
||||
for (i = 0; i < EP_MAX_BOARDS; i++) {
|
||||
outb(id_port, 0);
|
||||
outb(id_port, 0);
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@
|
|||
*/
|
||||
|
||||
/*
|
||||
* $Id: if_ep.c,v 1.25 1995/04/10 21:24:58 jkh Exp $
|
||||
* $Id: if_ep.c,v 1.26 1995/04/12 20:47:49 wollman Exp $
|
||||
*
|
||||
* Promiscuous mode added and interrupt logic slightly changed
|
||||
* to reduce the number of adapter failures. Transceiver select
|
||||
|
|
@ -210,7 +210,7 @@ ep_look_for_board_at(is)
|
|||
|
||||
/* Look for the ISA boards. Init and leave them actived */
|
||||
outb(id_port, 0xc0); /* Global reset */
|
||||
DELAY(1000);
|
||||
DELAY(10000);
|
||||
for (i = 0; i < EP_MAX_BOARDS; i++) {
|
||||
outb(id_port, 0);
|
||||
outb(id_port, 0);
|
||||
|
|
|
|||
Loading…
Reference in a new issue