aboutsummaryrefslogtreecommitdiff
path: root/plugins/ublox/mm-modem-helpers-ublox.c
diff options
context:
space:
mode:
authorBen Chan <benchan@chromium.org>2017-06-28 00:13:22 -0700
committerAleksander Morgado <aleksander@aleksander.es>2017-06-28 18:21:25 +0200
commit989ade7b8c2f8add2b670294453d2a93463b42f2 (patch)
tree36df4fed8291d57d4ea6367f7f8e631993391c4a /plugins/ublox/mm-modem-helpers-ublox.c
parent0fb0184a2f2c11927ef095fba71e0725e5a6e5e2 (diff)
enums: replace Roman numeral suffixes in MM_MODEM_BAND_EUTRAN_*
3GPP TS 36.101 Table 5.5-1 refers the E-UTRA operating bands as 1, 2, 3, ..., etc.
Diffstat (limited to 'plugins/ublox/mm-modem-helpers-ublox.c')
-rw-r--r--plugins/ublox/mm-modem-helpers-ublox.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/plugins/ublox/mm-modem-helpers-ublox.c b/plugins/ublox/mm-modem-helpers-ublox.c
index 96ac4702..bee1a8f0 100644
--- a/plugins/ublox/mm-modem-helpers-ublox.c
+++ b/plugins/ublox/mm-modem-helpers-ublox.c
@@ -552,55 +552,55 @@ typedef struct {
static const BandConfiguration band_configuration[] = {
{
.ubandsel_value = 700,
- .bands_4g = { MM_MODEM_BAND_EUTRAN_XIII, MM_MODEM_BAND_EUTRAN_XVII }
+ .bands_4g = { MM_MODEM_BAND_EUTRAN_13, MM_MODEM_BAND_EUTRAN_17 }
},
{
.ubandsel_value = 800,
.bands_3g = { MM_MODEM_BAND_U800 },
- .bands_4g = { MM_MODEM_BAND_EUTRAN_XX }
+ .bands_4g = { MM_MODEM_BAND_EUTRAN_20 }
},
{
.ubandsel_value = 850,
.bands_2g = { MM_MODEM_BAND_G850 },
.bands_3g = { MM_MODEM_BAND_U850 },
- .bands_4g = { MM_MODEM_BAND_EUTRAN_V }
+ .bands_4g = { MM_MODEM_BAND_EUTRAN_5 }
},
{
.ubandsel_value = 900,
.bands_2g = { MM_MODEM_BAND_EGSM },
.bands_3g = { MM_MODEM_BAND_U900 },
- .bands_4g = { MM_MODEM_BAND_EUTRAN_VIII }
+ .bands_4g = { MM_MODEM_BAND_EUTRAN_8 }
},
{
.ubandsel_value = 1500,
- .bands_4g = { MM_MODEM_BAND_EUTRAN_XI }
+ .bands_4g = { MM_MODEM_BAND_EUTRAN_11 }
},
{
.ubandsel_value = 1700,
.bands_3g = { MM_MODEM_BAND_U17IV },
- .bands_4g = { MM_MODEM_BAND_EUTRAN_IV }
+ .bands_4g = { MM_MODEM_BAND_EUTRAN_4 }
},
{
.ubandsel_value = 1800,
.bands_2g = { MM_MODEM_BAND_DCS },
.bands_3g = { MM_MODEM_BAND_U1800 },
- .bands_4g = { MM_MODEM_BAND_EUTRAN_III }
+ .bands_4g = { MM_MODEM_BAND_EUTRAN_3 }
},
{
.ubandsel_value = 1900,
.bands_2g = { MM_MODEM_BAND_PCS },
.bands_3g = { MM_MODEM_BAND_U1900 },
- .bands_4g = { MM_MODEM_BAND_EUTRAN_II }
+ .bands_4g = { MM_MODEM_BAND_EUTRAN_2 }
},
{
.ubandsel_value = 2100,
.bands_3g = { MM_MODEM_BAND_U2100 },
- .bands_4g = { MM_MODEM_BAND_EUTRAN_I }
+ .bands_4g = { MM_MODEM_BAND_EUTRAN_1 }
},
{
.ubandsel_value = 2600,
.bands_3g = { MM_MODEM_BAND_U2600 },
- .bands_4g = { MM_MODEM_BAND_EUTRAN_VII }
+ .bands_4g = { MM_MODEM_BAND_EUTRAN_7 }
},
};