3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-11-16 17:09:24 +01:00

network: remove network_bss_list_clear

This commit is contained in:
James Prestwood 2024-08-12 08:46:05 -07:00 committed by Denis Kenzior
parent aca92df19b
commit 68e1d055dd
2 changed files with 1 additions and 7 deletions

View File

@ -1286,12 +1286,6 @@ bool network_bss_list_isempty(struct network *network)
return l_queue_isempty(network->bss_list); return l_queue_isempty(network->bss_list);
} }
void network_bss_list_clear(struct network *network)
{
l_queue_destroy(network->bss_list, NULL);
network->bss_list = l_queue_new();
}
struct scan_bss *network_bss_list_pop(struct network *network) struct scan_bss *network_bss_list_pop(struct network *network)
{ {
struct scan_bss *bss = l_queue_pop_head(network->bss_list); struct scan_bss *bss = l_queue_pop_head(network->bss_list);

View File

@ -76,7 +76,7 @@ bool network_bss_update(struct network *network, struct scan_bss *bss);
const char *network_bss_get_path(const struct network *network, const char *network_bss_get_path(const struct network *network,
const struct scan_bss *bss); const struct scan_bss *bss);
bool network_bss_list_isempty(struct network *network); bool network_bss_list_isempty(struct network *network);
void network_bss_list_clear(struct network *network);
struct scan_bss *network_bss_list_pop(struct network *network); struct scan_bss *network_bss_list_pop(struct network *network);
struct scan_bss *network_bss_find_by_addr(struct network *network, struct scan_bss *network_bss_find_by_addr(struct network *network,
const uint8_t *addr); const uint8_t *addr);