3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2025-01-24 22:04:16 +01:00

wiphy: Remove unneeded brackets

This commit is contained in:
Denis Kenzior 2015-01-28 15:37:41 -06:00
parent 1894b75a18
commit c283557215

View File

@ -764,9 +764,8 @@ static void parse_bss(struct netdev *netdev, struct l_genl_attr *attr)
new_bss->network = network; new_bss->network = network;
l_queue_insert(network->bss_list, new_bss, add_bss, NULL); l_queue_insert(network->bss_list, new_bss, add_bss, NULL);
} else { } else
l_debug("Found existing BSS '%s'", bss_address_to_string(bss)); l_debug("Found existing BSS '%s'", bss_address_to_string(bss));
}
l_queue_push_head(netdev->bss_list, bss); l_queue_push_head(netdev->bss_list, bss);
return; return;