summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Norum <WENorum@lbl.gov>2004-10-13 00:09:54 +0000
committerEric Norum <WENorum@lbl.gov>2004-10-13 00:09:54 +0000
commit172f7dc444376f145757093de58bb3b0950a3457 (patch)
treed3202a2c19770595e1a695c3caa0d593554ea91d
parentAdd driver for Motorola MC146818A time-of-day clock. (diff)
downloadrtems-172f7dc444376f145757093de58bb3b0950a3457.tar.bz2
Avoid lockup during initialization.
Add additional supported device code.
-rw-r--r--c/src/libchip/network/if_fxp.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/c/src/libchip/network/if_fxp.c b/c/src/libchip/network/if_fxp.c
index cd6bf9b937..de6df58e2e 100644
--- a/c/src/libchip/network/if_fxp.c
+++ b/c/src/libchip/network/if_fxp.c
@@ -207,6 +207,7 @@ static struct fxp_ident fxp_ident_table[] = {
{ 0x1036, "Intel Pro/100 Ethernet", UNTESTED },
{ 0x1037, "Intel Pro/100 Ethernet", UNTESTED },
{ 0x1038, "Intel Pro/100 Ethernet", UNTESTED },
+ { 0x103B, "Intel Pro/100 Ethernet (82801BD PRO/100 VM (LOM))", 0 },
{ 0, NULL },
};
@@ -1687,6 +1688,11 @@ rtems_task_wake_after(100);
/*
* Cancel any pending I/O
*/
+ /*
+ * Add line suggested by "Eugene Denisov" <dea@sendmail.ru>
+ * on Tue, 16 Mar 2004 13:10:15 +0300
+ */
+ sc->stat_ch = fxp_timeout_stopped;
fxp_stop(sc);
prm = (ifp->if_flags & IFF_PROMISC) ? 1 : 0;