summaryrefslogtreecommitdiff
path: root/sys/dev/ic/xl.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2013-12-28 03:35:02 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2013-12-28 03:35:02 +0000
commit296554f245d538f85433e04ad9d0bc2a00202913 (patch)
tree934098b639a536f6691397d6e581339aeae04f60 /sys/dev/ic/xl.c
parent3158f5b9810d9538afa5260859a5eabbf5af0284 (diff)
The few network drivers that called their children's (ie. mii PHY
drivers) activate functions at DVACT_RESUME time do not need to do so, since their PHYs are repaired by IFF_UP.
Diffstat (limited to 'sys/dev/ic/xl.c')
-rw-r--r--sys/dev/ic/xl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/ic/xl.c b/sys/dev/ic/xl.c
index de8d9b42cde..e3863d7a580 100644
--- a/sys/dev/ic/xl.c
+++ b/sys/dev/ic/xl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xl.c,v 1.111 2013/12/06 21:03:03 deraadt Exp $ */
+/* $OpenBSD: xl.c,v 1.112 2013/12/28 03:35:01 deraadt Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -212,7 +212,6 @@ xl_activate(struct device *self, int act)
break;
case DVACT_RESUME:
xl_reset(sc);
- rv = config_activate_children(self, act);
if (ifp->if_flags & IFF_UP)
xl_init(sc);
break;