From 031fc810abd6b2e6e7ca1c5dca1e30b0816a0558 Mon Sep 17 00:00:00 2001 From: Bill Paul Date: Mon, 4 Dec 2000 22:46:50 +0000 Subject: Initialize/grab the mutex earlier in the attach phase, so that bailing out to the fail: label where we release/destroy the mutex will work without exploding. --- sys/dev/ti/if_ti.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev/ti') diff --git a/sys/dev/ti/if_ti.c b/sys/dev/ti/if_ti.c index 1a88f0d687f99..7f6660f5ae487 100644 --- a/sys/dev/ti/if_ti.c +++ b/sys/dev/ti/if_ti.c @@ -1476,6 +1476,9 @@ static int ti_attach(dev) unit = device_get_unit(dev); bzero(sc, sizeof(struct ti_softc)); + mtx_init(&sc->ti_mtx, device_get_nameunit(dev), MTX_DEF); + TI_LOCK(sc); + /* * Map control/status registers. */ @@ -1527,9 +1530,6 @@ static int ti_attach(dev) goto fail; } - mtx_init(&sc->ti_mtx, device_get_nameunit(dev), MTX_DEF); - TI_LOCK(sc); - sc->ti_unit = unit; if (ti_chipinit(sc)) { -- cgit v1.3