diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2014-07-01 15:46:12 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2014-07-01 15:46:57 +0200 |
commit | 15a3ebbd354017347d3d296980c7a7460c916bae (patch) | |
tree | 3732d41711eb7dc983a9881d29d5d10deff566d2 /plugins/cinterion/mm-plugin-cinterion.c | |
parent | ce5c3f5af6bac03421e329900f0a1eaa1f775eb0 (diff) |
cinterion: enable GPS location reporting for the PHS8 in QMI-mode
The PHS8 in QMI-mode doesn't support GPS location retrieval via QMI, so we will
fallback to use the AT-based setup and the TTY for reading NMEA traces.
Diffstat (limited to 'plugins/cinterion/mm-plugin-cinterion.c')
-rw-r--r-- | plugins/cinterion/mm-plugin-cinterion.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/cinterion/mm-plugin-cinterion.c b/plugins/cinterion/mm-plugin-cinterion.c index 18c53199..8af0a2ac 100644 --- a/plugins/cinterion/mm-plugin-cinterion.c +++ b/plugins/cinterion/mm-plugin-cinterion.c @@ -32,7 +32,7 @@ #include "mm-log.h" #if defined WITH_QMI -#include "mm-broadband-modem-qmi.h" +#include "mm-broadband-modem-qmi-cinterion.h" #endif G_DEFINE_TYPE (MMPluginCinterion, mm_plugin_cinterion, MM_TYPE_PLUGIN) @@ -140,11 +140,11 @@ create_modem (MMPlugin *self, #if defined WITH_QMI if (mm_port_probe_list_has_qmi_port (probes)) { mm_dbg ("QMI-powered Cinterion modem found..."); - return MM_BASE_MODEM (mm_broadband_modem_qmi_new (sysfs_path, - drivers, - mm_plugin_get_name (self), - vendor, - product)); + return MM_BASE_MODEM (mm_broadband_modem_qmi_cinterion_new (sysfs_path, + drivers, + mm_plugin_get_name (self), + vendor, + product)); } #endif |