From 8e0abe4cc479954f239d4623eb511af27738df8c Mon Sep 17 00:00:00 2001 From: wpaul Date: Fri, 13 Oct 2000 18:35:49 +0000 Subject: Use device_get_nameunit(dev) as the mutex string when calling mtx_init() instead of hard-coded string constant. Also remember to do the mutex changes to the ste driver, which I forgot in the first commit. --- sys/dev/vr/if_vr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/vr') diff --git a/sys/dev/vr/if_vr.c b/sys/dev/vr/if_vr.c index 10b9942..7430a8c 100644 --- a/sys/dev/vr/if_vr.c +++ b/sys/dev/vr/if_vr.c @@ -729,7 +729,7 @@ static int vr_attach(dev) goto fail; } - mtx_init(&sc->vr_mtx, "vr", MTX_DEF); + mtx_init(&sc->vr_mtx, device_get_nameunit(dev), MTX_DEF); VR_LOCK(sc); /* Reset the adapter. */ vr_reset(sc); -- cgit v1.1