aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Prestwood <prestwoj@gmail.com>2020-05-04 08:24:19 -0700
committerDenis Kenzior <denkenz@gmail.com>2020-05-01 19:55:15 -0500
commit1c75f636ed18ff224ca81da411fe67e2cb9d9b90 (patch)
treea036c7be1daab7bf7feb64d387adf138d9749a7a
parentd12fad5eed4cec05d46454c7467ff343e56512df (diff)
downloadiwd-1c75f636ed18ff224ca81da411fe67e2cb9d9b90.tar.gz
wiphy: remove useless debug prints
Several parsing functions printed the function name, which isn't very useful to anyone.
-rw-r--r--src/wiphy.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/wiphy.c b/src/wiphy.c
index 139474d20..9821da0e3 100644
--- a/src/wiphy.c
+++ b/src/wiphy.c
@@ -715,8 +715,6 @@ static void parse_supported_frequencies(struct wiphy *wiphy,
const void *data;
struct l_genl_attr attr;
- l_debug("");
-
while (l_genl_attr_next(freqs, NULL, NULL, NULL)) {
if (!l_genl_attr_recurse(freqs, &attr))
continue;
@@ -786,8 +784,6 @@ static void parse_supported_bands(struct wiphy *wiphy,
uint16_t type;
struct l_genl_attr attr;
- l_debug("");
-
while (l_genl_attr_next(bands, &type, NULL, NULL)) {
enum nl80211_band band = type;
@@ -1081,8 +1077,6 @@ void wiphy_update_from_genl(struct wiphy *wiphy, struct l_genl_msg *msg)
if (wiphy->blacklisted)
return;
- l_debug("");
-
wiphy_parse_attributes(wiphy, msg);
}