summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorandvar <andvar@NetBSD.org>2021-09-19 11:37:00 +0000
committerandvar <andvar@NetBSD.org>2021-09-19 11:37:00 +0000
commite2b57c287aa6e951700d0bf81bfd20c5fa371423 (patch)
tree606f3934e94fd760d6394adbc27830882d72a212 /sys/dev
parent5aea1b75a2115ee55bf139a3f432f964f4375b8c (diff)
fix few more typos in comments, messages and documentation.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/if_iwn.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pci/if_iwn.c b/sys/dev/pci/if_iwn.c
index cdd3bf3ee77..0c63cef8c1d 100644
--- a/sys/dev/pci/if_iwn.c
+++ b/sys/dev/pci/if_iwn.c
@@ -1,4 +1,4 @@
-/* $NetBSD: if_iwn.c,v 1.96 2021/06/16 00:21:18 riastradh Exp $ */
+/* $NetBSD: if_iwn.c,v 1.97 2021/09/19 11:37:01 andvar Exp $ */
/* $OpenBSD: if_iwn.c,v 1.135 2014/09/10 07:22:09 dcoppa Exp $ */
/*-
@@ -22,7 +22,7 @@
* adapters.
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_iwn.c,v 1.96 2021/06/16 00:21:18 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_iwn.c,v 1.97 2021/09/19 11:37:01 andvar Exp $");
#define IWN_USE_RBUF /* Use local storage for RX */
#undef IWN_HWCRYPTO /* XXX does not even compile yet */
@@ -4477,14 +4477,14 @@ iwn_config_bt_coex_adv_config(struct iwn_softc *sc, struct iwn_bt_basic *basic,
btprot.type = 1;
error = iwn_cmd(sc, IWN_CMD_BT_COEX_PROT, &btprot, sizeof btprot, 1);
if (error != 0) {
- aprint_error_dev(sc->sc_dev, "could not open BT protcol\n");
+ aprint_error_dev(sc->sc_dev, "could not open BT protocol\n");
return error;
}
btprot.open = 0;
error = iwn_cmd(sc, IWN_CMD_BT_COEX_PROT, &btprot, sizeof btprot, 1);
if (error != 0) {
- aprint_error_dev(sc->sc_dev, "could not close BT protcol\n");
+ aprint_error_dev(sc->sc_dev, "could not close BT protocol\n");
return error;
}
return 0;