diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-02-14 10:55:46 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:15:05 +0100 |
commit | 26ac82f60760a366a77ad2eda3577bb05cd5a868 (patch) | |
tree | ae2b78d3ee3ca4a79ac12d47b37903a30fc3e6ac | |
parent | 2000331f86c3a361206abde6b160dfe366a8704f (diff) |
broadband-modem: minor indentation fixes
-rw-r--r-- | src/mm-broadband-modem.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/mm-broadband-modem.c b/src/mm-broadband-modem.c index 00fb4c33..6d9b16fa 100644 --- a/src/mm-broadband-modem.c +++ b/src/mm-broadband-modem.c @@ -325,25 +325,25 @@ modem_create_sim (MMIfaceModem *self, /* Capabilities loading (Modem interface) */ typedef struct { - gchar *name; - MMModemCapability bits; + gchar *name; + MMModemCapability bits; } ModemCaps; static const ModemCaps modem_caps[] = { - { "+CGSM", MM_MODEM_CAPABILITY_GSM_UMTS }, - { "+CLTE2", MM_MODEM_CAPABILITY_LTE }, /* Novatel */ - { "+CLTE", MM_MODEM_CAPABILITY_LTE }, - { "+CIS707-A", MM_MODEM_CAPABILITY_CDMA_EVDO }, - { "+CIS707A", MM_MODEM_CAPABILITY_CDMA_EVDO }, /* Cmotech */ - { "+CIS707", MM_MODEM_CAPABILITY_CDMA_EVDO }, - { "CIS707", MM_MODEM_CAPABILITY_CDMA_EVDO }, /* Qualcomm Gobi */ - { "+CIS707P", MM_MODEM_CAPABILITY_CDMA_EVDO }, - { "CIS-856", MM_MODEM_CAPABILITY_CDMA_EVDO }, - { "+IS-856", MM_MODEM_CAPABILITY_CDMA_EVDO }, /* Cmotech */ - { "CIS-856-A", MM_MODEM_CAPABILITY_CDMA_EVDO }, - { "CIS-856A", MM_MODEM_CAPABILITY_CDMA_EVDO }, /* Kyocera KPC680 */ + { "+CGSM", MM_MODEM_CAPABILITY_GSM_UMTS }, + { "+CLTE2", MM_MODEM_CAPABILITY_LTE }, /* Novatel */ + { "+CLTE", MM_MODEM_CAPABILITY_LTE }, + { "+CIS707-A", MM_MODEM_CAPABILITY_CDMA_EVDO }, + { "+CIS707A", MM_MODEM_CAPABILITY_CDMA_EVDO }, /* Cmotech */ + { "+CIS707", MM_MODEM_CAPABILITY_CDMA_EVDO }, + { "CIS707", MM_MODEM_CAPABILITY_CDMA_EVDO }, /* Qualcomm Gobi */ + { "+CIS707P", MM_MODEM_CAPABILITY_CDMA_EVDO }, + { "CIS-856", MM_MODEM_CAPABILITY_CDMA_EVDO }, + { "+IS-856", MM_MODEM_CAPABILITY_CDMA_EVDO }, /* Cmotech */ + { "CIS-856-A", MM_MODEM_CAPABILITY_CDMA_EVDO }, + { "CIS-856A", MM_MODEM_CAPABILITY_CDMA_EVDO }, /* Kyocera KPC680 */ /* TODO: FCLASS, MS, ES, DS? */ - { NULL } + { NULL } }; static gboolean |