aboutsummaryrefslogtreecommitdiff
path: root/plugins/ublox/mm-plugin-ublox.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2016-08-01 19:28:26 +0200
committerAleksander Morgado <aleksander@aleksander.es>2016-10-12 11:29:51 +0200
commit40f3725ef9f5914b89279f270f2b50fe5ada3847 (patch)
tree7d4f9fefe8f517743394aa85ada02d905ae53f85 /plugins/ublox/mm-plugin-ublox.c
parentf22c088cee9489af0e97c3dad0cfe0a2d897f434 (diff)
ublox: new broadband modem object
Diffstat (limited to 'plugins/ublox/mm-plugin-ublox.c')
-rw-r--r--plugins/ublox/mm-plugin-ublox.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/plugins/ublox/mm-plugin-ublox.c b/plugins/ublox/mm-plugin-ublox.c
index 3efd5230..13d8df97 100644
--- a/plugins/ublox/mm-plugin-ublox.c
+++ b/plugins/ublox/mm-plugin-ublox.c
@@ -20,7 +20,7 @@
#include <libmm-glib.h>
#include "mm-log.h"
-#include "mm-broadband-modem.h"
+#include "mm-broadband-modem-ublox.h"
#include "mm-plugin-ublox.h"
G_DEFINE_TYPE (MMPluginUblox, mm_plugin_ublox, MM_TYPE_PLUGIN)
@@ -31,19 +31,19 @@ MM_PLUGIN_DEFINE_MINOR_VERSION
/*****************************************************************************/
static MMBaseModem *
-create_modem (MMPlugin *self,
- const gchar *sysfs_path,
+create_modem (MMPlugin *self,
+ const gchar *sysfs_path,
const gchar **drivers,
- guint16 vendor,
- guint16 product,
- GList *probes,
- GError **error)
+ guint16 vendor,
+ guint16 product,
+ GList *probes,
+ GError **error)
{
- return MM_BASE_MODEM (mm_broadband_modem_new (sysfs_path,
- drivers,
- mm_plugin_get_name (self),
- vendor,
- product));
+ return MM_BASE_MODEM (mm_broadband_modem_ublox_new (sysfs_path,
+ drivers,
+ mm_plugin_get_name (self),
+ vendor,
+ product));
}
/*****************************************************************************/