From faecee94132144ff44af7b750b3401df819fd633 Mon Sep 17 00:00:00 2001 From: stsp Date: Fri, 9 Feb 2024 09:53:50 +0000 Subject: [PATCH] remove qwx debug prints for management frame events we are already handling --- sys/dev/ic/qwx.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/sys/dev/ic/qwx.c b/sys/dev/ic/qwx.c index ddc1708bed2..b945f5d6a94 100644 --- a/sys/dev/ic/qwx.c +++ b/sys/dev/ic/qwx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: qwx.c,v 1.28 2024/02/08 14:36:22 stsp Exp $ */ +/* $OpenBSD: qwx.c,v 1.29 2024/02/09 09:53:50 stsp Exp $ */ /* * Copyright 2023 Stefan Sperling @@ -12892,7 +12892,6 @@ qwx_wmi_tlv_op_rx(struct qwx_softc *sc, struct mbuf *m) break; #endif case WMI_MGMT_RX_EVENTID: - DPRINTF("%s: 0x%x: mgmt rx event\n", __func__, id); qwx_mgmt_rx_event(sc, m); /* mgmt_rx_event() owns the skb now! */ return; @@ -12900,7 +12899,6 @@ qwx_wmi_tlv_op_rx(struct qwx_softc *sc, struct mbuf *m) qwx_mgmt_tx_compl_event(sc, m); break; case WMI_SCAN_EVENTID: - DPRINTF("%s: 0x%x: scan event\n", __func__, id); qwx_scan_event(sc, m); break; #if 0 @@ -12912,7 +12910,6 @@ qwx_wmi_tlv_op_rx(struct qwx_softc *sc, struct mbuf *m) qwx_roam_event(sc, m); break; case WMI_CHAN_INFO_EVENTID: - DPRINTF("%s: 0x%x: chan info event\n", __func__, id); qwx_chan_info_event(sc, m); break; #if 0 -- 2.20.1