diff options
author | Peter Hessler <phessler@cvs.openbsd.org> | 2024-02-16 09:03:30 +0000 |
---|---|---|
committer | Peter Hessler <phessler@cvs.openbsd.org> | 2024-02-16 09:03:30 +0000 |
commit | f74daa89cac92245235ec5ad4cc99e09242759e6 (patch) | |
tree | 6f259aedb422e4fe832ec8a840fdc79bba06c4cc /sys/dev/ic | |
parent | c85ea694b9e1af5493896ae10aba4873f7dab394 (diff) |
start moving some developmental printfs to be DEBUG DPRINTFs
requested and OK by stsp@
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/qwx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/qwx.c b/sys/dev/ic/qwx.c index 80a8e4786b1..a3f9e2f948d 100644 --- a/sys/dev/ic/qwx.c +++ b/sys/dev/ic/qwx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: qwx.c,v 1.40 2024/02/15 16:29:45 stsp Exp $ */ +/* $OpenBSD: qwx.c,v 1.41 2024/02/16 09:03:29 phessler Exp $ */ /* * Copyright 2023 Stefan Sperling <stsp@openbsd.org> @@ -7098,7 +7098,7 @@ qwx_qrtr_recv_msg(struct qwx_softc *sc, struct mbuf *m) wakeup(&sc->qrtr_server); break; default: - printf("%s: unhandled qrtr type %u\n", + DPRINTF("%s: unhandled qrtr type %u\n", sc->sc_dev.dv_xname, type); return; } @@ -13003,7 +13003,7 @@ qwx_wmi_tlv_op_rx(struct qwx_softc *sc, struct mbuf *m) DPRINTF("%s: 0x%x: wlan freq avoid event\n", __func__, id); break; default: - printf("%s: unsupported event id 0x%x\n", __func__, id); + DPRINTF("%s: unsupported event id 0x%x\n", __func__, id); break; } |