summaryrefslogtreecommitdiffstats
path: root/sys/pci/if_pcn.c
diff options
context:
space:
mode:
authorwpaul <wpaul@FreeBSD.org>2000-10-13 18:35:49 +0000
committerwpaul <wpaul@FreeBSD.org>2000-10-13 18:35:49 +0000
commit8e0abe4cc479954f239d4623eb511af27738df8c (patch)
treefff6a7e2bdedaad22a27ef128d69bb1169c24bfb /sys/pci/if_pcn.c
parent9ddccb55057ef3b64d80b6d90cb2b25b56238ba3 (diff)
downloadFreeBSD-src-8e0abe4cc479954f239d4623eb511af27738df8c.zip
FreeBSD-src-8e0abe4cc479954f239d4623eb511af27738df8c.tar.gz
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.
Diffstat (limited to 'sys/pci/if_pcn.c')
-rw-r--r--sys/pci/if_pcn.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/pci/if_pcn.c b/sys/pci/if_pcn.c
index 9accefb..c9952f3 100644
--- a/sys/pci/if_pcn.c
+++ b/sys/pci/if_pcn.c
@@ -398,7 +398,8 @@ static int pcn_probe(dev)
}
sc->pcn_btag = rman_get_bustag(sc->pcn_res);
sc->pcn_bhandle = rman_get_bushandle(sc->pcn_res);
- mtx_init(&sc->pcn_mtx, "pcn", MTX_DEF);
+ mtx_init(&sc->pcn_mtx,
+ device_get_nameunit(dev), MTX_DEF);
PCN_LOCK(sc);
pcn_reset(sc);
chip_id = pcn_csr_read(sc, PCN_CSR_CHIPID1);
@@ -534,7 +535,7 @@ static int pcn_attach(dev)
}
/* Initialize our mutex. */
- mtx_init(&sc->pcn_mtx, "pcn", MTX_DEF);
+ mtx_init(&sc->pcn_mtx, device_get_nameunit(dev), MTX_DEF);
PCN_LOCK(sc);
/* Reset the adapter. */
OpenPOWER on IntegriCloud