cinterion: drop unused constants

GCC 6 doesn't like this. Unused since f2024b7.
This commit is contained in:
Lubomir Rintel
2016-03-21 14:58:41 +01:00
committed by Aleksander Morgado
parent 2a5909af17
commit 342ea24e34

View File

@@ -71,30 +71,6 @@ struct _MMBroadbandModemCinterionPrivate {
GArray *cnmi_supported_bfr;
};
/* Setup relationship between the band bitmask in the modem and the bitmask
* in ModemManager. */
typedef struct {
gchar *cinterion_band;
guint n_mm_bands;
MMModemBand mm_bands [4];
} CinterionBand2G;
/* Table checked in both MC75i (GPRS/EDGE) and EGS5 (GPRS) references.
* Note that the modem's configuration is also based on a bitmask, but as we
* will just support some of the combinations, we just use strings for them.
*/
static const CinterionBand2G bands_2g[] = {
{ "1", 1, { MM_MODEM_BAND_EGSM, 0, 0, 0 }},
{ "2", 1, { MM_MODEM_BAND_DCS, 0, 0, 0 }},
{ "4", 1, { MM_MODEM_BAND_PCS, 0, 0, 0 }},
{ "8", 1, { MM_MODEM_BAND_G850, 0, 0, 0 }},
{ "3", 2, { MM_MODEM_BAND_EGSM, MM_MODEM_BAND_DCS, 0, 0 }},
{ "5", 2, { MM_MODEM_BAND_EGSM, MM_MODEM_BAND_PCS, 0, 0 }},
{ "10", 2, { MM_MODEM_BAND_G850, MM_MODEM_BAND_DCS, 0, 0 }},
{ "12", 2, { MM_MODEM_BAND_G850, MM_MODEM_BAND_PCS, 0, 0 }},
{ "15", 4, { MM_MODEM_BAND_EGSM, MM_MODEM_BAND_DCS, MM_MODEM_BAND_PCS, MM_MODEM_BAND_G850 }}
};
/*****************************************************************************/
/* Unsolicited events enabling */