3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-11-22 06:29:23 +01:00

scan: Add static qualifiers, remove initializers

This commit is contained in:
Andrew Zaborowski 2019-05-01 17:32:30 +02:00 committed by Denis Kenzior
parent 35743fa32a
commit 32dc69ffab

View File

@ -49,11 +49,11 @@
#define SCAN_MAX_INTERVAL 320
#define SCAN_INIT_INTERVAL 10
struct l_queue *scan_contexts = NULL;
static struct l_queue *scan_contexts;
static struct l_genl_family *nl80211 = NULL;
uint32_t scan_id = 0;
uint32_t next_scan_request_id = 0;
static struct l_genl_family *nl80211;
static uint32_t scan_id;
static uint32_t next_scan_request_id;
struct scan_periodic {
struct l_timeout *timeout;