diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-08-24 13:09:17 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-08-24 13:09:17 +0200 |
commit | a595912d2d70fce7a8370b194c230331fee605a7 (patch) | |
tree | 2acba67ed40d76e5a1ff66b3aa06568f3f5b240d | |
parent | 985f510041a131cd1400deca5a9a9b004479dcac (diff) |
novatel: fix creation of the `MMBroadbandModemNovatel' object
-rw-r--r-- | plugins/novatel/mm-plugin-novatel.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/novatel/mm-plugin-novatel.c b/plugins/novatel/mm-plugin-novatel.c index dab2606b..25eb6e46 100644 --- a/plugins/novatel/mm-plugin-novatel.c +++ b/plugins/novatel/mm-plugin-novatel.c @@ -26,7 +26,7 @@ #include "mm-plugin-novatel.h" #include "mm-private-boxed-types.h" -#include "mm-broadband-modem.h" +#include "mm-broadband-modem-novatel.h" #include "mm-log.h" G_DEFINE_TYPE (MMPluginNovatel, mm_plugin_novatel, MM_TYPE_PLUGIN) @@ -43,11 +43,11 @@ create_modem (MMPlugin *self, GList *probes, GError **error) { - return MM_BASE_MODEM (mm_broadband_modem_new (sysfs_path, - driver, - mm_plugin_get_name (self), - vendor, - product)); + return MM_BASE_MODEM (mm_broadband_modem_novatel_new (sysfs_path, + driver, + mm_plugin_get_name (self), + vendor, + product)); } /*****************************************************************************/ |