diff options
Diffstat (limited to 'usr/src/uts/common/io/bge/bge_main2.c')
-rw-r--r-- | usr/src/uts/common/io/bge/bge_main2.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr/src/uts/common/io/bge/bge_main2.c b/usr/src/uts/common/io/bge/bge_main2.c index a5ec142b25..55c5b1df44 100644 --- a/usr/src/uts/common/io/bge/bge_main2.c +++ b/usr/src/uts/common/io/bge/bge_main2.c @@ -34,7 +34,7 @@ * This is the string displayed by modinfo, etc. * Make sure you keep the version ID up to date! */ -static char bge_ident[] = "Broadcom Gb Ethernet"; +static char bge_ident[] = "Broadcom Gb Ethernet v0.62"; /* * Property names @@ -499,6 +499,11 @@ bge_m_stop(void *arg) return; } bge_stop(bgep); + + bgep->link_update_timer = 0; + bgep->link_state = LINK_STATE_UNKNOWN; + mac_link_update(bgep->mh, bgep->link_state); + /* * Free the possible tx buffers allocated in tx process. */ |