summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_ixgb.c
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2006-02-10 08:56:15 +0000
committerBrad Smith <brad@cvs.openbsd.org>2006-02-10 08:56:15 +0000
commitec02fac4d79e0e2a9da71a69cd7e6da2de19f23b (patch)
treeb583ce4cb40595bfe36f607ab1921a0c5b4a77ae /sys/dev/pci/if_ixgb.c
parentf2ceed83b9534c0ed4a032d5433bb7f31ffa9d97 (diff)
Remove clearing of the IFF_RUNNING flag from the watchdog handler as
ixgb_stop() will do this anyway.
Diffstat (limited to 'sys/dev/pci/if_ixgb.c')
-rw-r--r--sys/dev/pci/if_ixgb.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/pci/if_ixgb.c b/sys/dev/pci/if_ixgb.c
index d8624d3f111..39ed7422490 100644
--- a/sys/dev/pci/if_ixgb.c
+++ b/sys/dev/pci/if_ixgb.c
@@ -31,7 +31,7 @@ POSSIBILITY OF SUCH DAMAGE.
***************************************************************************/
-/* $OpenBSD: if_ixgb.c,v 1.6 2006/02/01 20:13:49 brad Exp $ */
+/* $OpenBSD: if_ixgb.c,v 1.7 2006/02/10 08:56:14 brad Exp $ */
#include <dev/pci/if_ixgb.h>
@@ -448,8 +448,6 @@ ixgb_watchdog(struct ifnet * ifp)
}
printf("%s: watchdog timeout -- resetting\n", sc->sc_dv.dv_xname);
- ifp->if_flags &= ~IFF_RUNNING;
-
ixgb_stop(sc);
ixgb_init(sc);