modem: global data is pre-zeroed

Module-local and global data are BSS symbols and don't require
zero-initialization.
This commit is contained in:
Jonas Bonn 2018-10-26 12:13:19 +02:00 committed by Denis Kenzior
parent ec3c6c67af
commit 652a717f3a
1 changed files with 7 additions and 7 deletions

View File

@ -36,15 +36,15 @@
#define DEFAULT_POWERED_TIMEOUT (20)
static GSList *g_devinfo_drivers = NULL;
static GSList *g_driver_list = NULL;
static GSList *g_modem_list = NULL;
static GSList *g_devinfo_drivers;
static GSList *g_driver_list;
static GSList *g_modem_list;
static int next_modem_id = 0;
static gboolean powering_down = FALSE;
static int modems_remaining = 0;
static int next_modem_id;
static gboolean powering_down;
static int modems_remaining;
static struct ofono_watchlist *g_modemwatches = NULL;
static struct ofono_watchlist *g_modemwatches;
enum property_type {
PROPERTY_TYPE_INVALID = 0,