wiphy: remove useless debug prints

Several parsing functions printed the function name, which isn't
very useful to anyone.
This commit is contained in:
James Prestwood 2020-05-04 08:24:19 -07:00 committed by Denis Kenzior
parent d12fad5eed
commit 1c75f636ed
1 changed files with 0 additions and 6 deletions

View File

@ -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);
}