summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authormlelstv <mlelstv@NetBSD.org>2019-09-02 07:25:48 +0000
committermlelstv <mlelstv@NetBSD.org>2019-09-02 07:25:48 +0000
commitf75ceb878e89e134d3be506fffb7615b2ea7d95a (patch)
tree5db425772632645aeb73dbbc1538b05c5518f906 /sys/dev
parent59183325078786cd5525a5562b8bef8113a49cb1 (diff)
tagging work queue as MPSAFE was premature. Revert.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ic/bwfm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/bwfm.c b/sys/dev/ic/bwfm.c
index 22c3f6def59..fcc0b1758ec 100644
--- a/sys/dev/ic/bwfm.c
+++ b/sys/dev/ic/bwfm.c
@@ -1,4 +1,4 @@
-/* $NetBSD: bwfm.c,v 1.15 2019/09/01 05:40:39 mlelstv Exp $ */
+/* $NetBSD: bwfm.c,v 1.16 2019/09/02 07:25:48 mlelstv Exp $ */
/* $OpenBSD: bwfm.c,v 1.5 2017/10/16 22:27:16 patrick Exp $ */
/*
* Copyright (c) 2010-2016 Broadcom Corporation
@@ -143,7 +143,7 @@ bwfm_attach(struct bwfm_softc *sc)
int i, j, error;
error = workqueue_create(&sc->sc_taskq, DEVNAME(sc),
- bwfm_task, sc, PRI_NONE, IPL_NET, WQ_MPSAFE);
+ bwfm_task, sc, PRI_NONE, IPL_NET, 0);
if (error != 0) {
printf("%s: could not create workqueue\n", DEVNAME(sc));
return;