summaryrefslogtreecommitdiffstats
path: root/sys/dev/ti
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2003-04-21 18:34:04 +0000
committerimp <imp@FreeBSD.org>2003-04-21 18:34:04 +0000
commit55161dbc6632c57d6a3fcffbcdc9a59dc6e85837 (patch)
tree0f3c4bf02902f61a556e6b18052de79329cb82dd /sys/dev/ti
parent68d1cc4cc56aa153d88ebdd81328775aa1563850 (diff)
downloadFreeBSD-src-55161dbc6632c57d6a3fcffbcdc9a59dc6e85837.zip
FreeBSD-src-55161dbc6632c57d6a3fcffbcdc9a59dc6e85837.tar.gz
Use newly minted device_is_attached rather than device_is_alive to see
if attach succeeded. device_is_alive just tells us that probe succeeded. Since we were using it to do things like detach net interfaces, this caused problems when there were errors in the attach routine. Symptoms of problem reported by: martin blapp
Diffstat (limited to 'sys/dev/ti')
-rw-r--r--sys/dev/ti/if_ti.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ti/if_ti.c b/sys/dev/ti/if_ti.c
index 5046685..614a408 100644
--- a/sys/dev/ti/if_ti.c
+++ b/sys/dev/ti/if_ti.c
@@ -2377,7 +2377,7 @@ ti_detach(dev)
ifp = &sc->arpcom.ac_if;
/* These should only be active if attach succeeded */
- if (device_is_alive(dev)) {
+ if (device_is_attached(dev)) {
ti_stop(sc);
ether_ifdetach(ifp);
bus_generic_detach(dev);
OpenPOWER on IntegriCloud