From 17f1d6f03a9f1b2671a6b90c54acdc2c93492a03 Mon Sep 17 00:00:00 2001 From: zxystd <1051244836@qq.com> Date: Tue, 22 Mar 2022 13:59:16 +0800 Subject: [PATCH] iwn: Remove verbose log. --- itlwm/hal_iwn/ItlIwn.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/itlwm/hal_iwn/ItlIwn.cpp b/itlwm/hal_iwn/ItlIwn.cpp index 1118b7dcd..64bd97d48 100644 --- a/itlwm/hal_iwn/ItlIwn.cpp +++ b/itlwm/hal_iwn/ItlIwn.cpp @@ -2122,13 +2122,11 @@ iwn_rx_done(struct iwn_softc *sc, struct iwn_rx_desc *desc, if (ic->ic_opmode == IEEE80211_M_MONITOR) { /* Allow control frames in monitor mode. */ if (len < sizeof (struct ieee80211_frame_cts)) { - DPRINTF(("frame too short: %d\n", len)); ic->ic_stats.is_rx_tooshort++; ifp->netStat->inputErrors++; return; } } else if (len < sizeof (*wh)) { - DPRINTF(("frame too short: %d\n", len)); ic->ic_stats.is_rx_tooshort++; ifp->netStat->inputErrors++; return;