diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2018-12-24 16:33:43 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2019-01-30 12:10:03 +0100 |
commit | b1d69a69f9aaeb7c8e2b32a24517c275f34f2035 (patch) | |
tree | 318959f9e03d28881254d72cc90c0ed37c42725b /plugins/ublox/mm-modem-helpers-ublox.h | |
parent | 308d9e4ddb0f98bd3653e7f8255517f74cdf4dfc (diff) |
ublox,helpers: rename enum
We're not going to use CFUN/COPS just for bands, but also for modes,
so use more generic names.
Diffstat (limited to 'plugins/ublox/mm-modem-helpers-ublox.h')
-rw-r--r-- | plugins/ublox/mm-modem-helpers-ublox.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/ublox/mm-modem-helpers-ublox.h b/plugins/ublox/mm-modem-helpers-ublox.h index 1531552c..cdbddd0e 100644 --- a/plugins/ublox/mm-modem-helpers-ublox.h +++ b/plugins/ublox/mm-modem-helpers-ublox.h @@ -29,16 +29,16 @@ typedef enum { } FeatureSupport; typedef enum { - BAND_UPDATE_NEEDS_UNKNOWN, - BAND_UPDATE_NEEDS_CFUN, - BAND_UPDATE_NEEDS_COPS, -} UpdateMethod; + SETTINGS_UPDATE_METHOD_UNKNOWN, + SETTINGS_UPDATE_METHOD_CFUN, + SETTINGS_UPDATE_METHOD_COPS, +} SettingsUpdateMethod; typedef struct UbloxSupportConfig { - gboolean loaded; - UpdateMethod method; - FeatureSupport uact; - FeatureSupport ubandsel; + gboolean loaded; + SettingsUpdateMethod method; + FeatureSupport uact; + FeatureSupport ubandsel; } UbloxSupportConfig; /*****************************************************************************/ |