diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-07-10 16:59:20 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-07-10 17:04:00 +0200 |
commit | 3dd3d6faf6df1666d59b24c5329ed1da40d01112 (patch) | |
tree | 1110804dda76eb762e772f7c863e3e192230f76d /plugins/cinterion/mm-plugin-cinterion.c | |
parent | 17876994c473ee244df17dec42c1a79e08407e2c (diff) |
cinterion: new custom MBIM modem object
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 1a58008f..48fbb1ac 100644 --- a/plugins/cinterion/mm-plugin-cinterion.c +++ b/plugins/cinterion/mm-plugin-cinterion.c @@ -36,7 +36,7 @@ #endif #if defined WITH_MBIM -#include "mm-broadband-modem-mbim.h" +#include "mm-broadband-modem-mbim-cinterion.h" #endif G_DEFINE_TYPE (MMPluginCinterion, mm_plugin_cinterion, MM_TYPE_PLUGIN) @@ -131,11 +131,11 @@ create_modem (MMPlugin *self, #if defined WITH_MBIM if (mm_port_probe_list_has_mbim_port (probes)) { mm_obj_dbg (self, "MBIM-powered Cinterion modem found..."); - return MM_BASE_MODEM (mm_broadband_modem_mbim_new (uid, - drivers, - mm_plugin_get_name (self), - vendor, - product)); + return MM_BASE_MODEM (mm_broadband_modem_mbim_cinterion_new (uid, + drivers, + mm_plugin_get_name (self), + vendor, + product)); } #endif |