diff options
author | avg <avg@FreeBSD.org> | 2017-03-04 13:03:31 +0000 |
---|---|---|
committer | avg <avg@FreeBSD.org> | 2017-03-04 13:03:31 +0000 |
commit | ee895f7b426627aad1638091f62f0eb122a17460 (patch) | |
tree | 822fb78084d564fa54c140dfab630370fb3397e6 /sys/dev/glxsb | |
parent | a3480d5c9e3eb277d85d4bef6f03fd62eb864799 (diff) | |
download | FreeBSD-src-ee895f7b426627aad1638091f62f0eb122a17460.zip FreeBSD-src-ee895f7b426627aad1638091f62f0eb122a17460.tar.gz |
MFC r283291: don't use CALLOUT_MPSAFE with callout_init()
The main purpose of this MFC is to reduce conflicts for other merges.
Parts of the original change have already "trickled down" via individual MFCs.
Diffstat (limited to 'sys/dev/glxsb')
-rw-r--r-- | sys/dev/glxsb/glxsb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/glxsb/glxsb.c b/sys/dev/glxsb/glxsb.c index 646fe3f..bfe7eea 100644 --- a/sys/dev/glxsb/glxsb.c +++ b/sys/dev/glxsb/glxsb.c @@ -331,7 +331,7 @@ glxsb_attach(device_t dev) sc->sc_rnghz = hz / 100; else sc->sc_rnghz = 1; - callout_init(&sc->sc_rngco, CALLOUT_MPSAFE); + callout_init(&sc->sc_rngco, 1); glxsb_rnd(sc); return (0); |