aboutsummaryrefslogtreecommitdiff
path: root/plugins/gobi
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/gobi')
-rw-r--r--plugins/gobi/mm-broadband-modem-gobi.c4
-rw-r--r--plugins/gobi/mm-broadband-modem-gobi.h2
-rw-r--r--plugins/gobi/mm-plugin-gobi.c4
3 files changed, 5 insertions, 5 deletions
diff --git a/plugins/gobi/mm-broadband-modem-gobi.c b/plugins/gobi/mm-broadband-modem-gobi.c
index 6c712629..27aded25 100644
--- a/plugins/gobi/mm-broadband-modem-gobi.c
+++ b/plugins/gobi/mm-broadband-modem-gobi.c
@@ -89,14 +89,14 @@ load_access_technologies (MMIfaceModem *self,
MMBroadbandModemGobi *
mm_broadband_modem_gobi_new (const gchar *device,
- const gchar *driver,
+ const gchar **drivers,
const gchar *plugin,
guint16 vendor_id,
guint16 product_id)
{
return g_object_new (MM_TYPE_BROADBAND_MODEM_GOBI,
MM_BASE_MODEM_DEVICE, device,
- MM_BASE_MODEM_DRIVER, driver,
+ MM_BASE_MODEM_DRIVERS, drivers,
MM_BASE_MODEM_PLUGIN, plugin,
MM_BASE_MODEM_VENDOR_ID, vendor_id,
MM_BASE_MODEM_PRODUCT_ID, product_id,
diff --git a/plugins/gobi/mm-broadband-modem-gobi.h b/plugins/gobi/mm-broadband-modem-gobi.h
index 844fd80f..4164cfe6 100644
--- a/plugins/gobi/mm-broadband-modem-gobi.h
+++ b/plugins/gobi/mm-broadband-modem-gobi.h
@@ -41,7 +41,7 @@ struct _MMBroadbandModemGobiClass{
GType mm_broadband_modem_gobi_get_type (void);
MMBroadbandModemGobi *mm_broadband_modem_gobi_new (const gchar *device,
- const gchar *driver,
+ const gchar **drivers,
const gchar *plugin,
guint16 vendor_id,
guint16 product_id);
diff --git a/plugins/gobi/mm-plugin-gobi.c b/plugins/gobi/mm-plugin-gobi.c
index 377069e0..fdfb48ec 100644
--- a/plugins/gobi/mm-plugin-gobi.c
+++ b/plugins/gobi/mm-plugin-gobi.c
@@ -32,14 +32,14 @@ int mm_plugin_minor_version = MM_PLUGIN_MINOR_VERSION;
static MMBaseModem *
create_modem (MMPlugin *self,
const gchar *sysfs_path,
- const gchar *driver,
+ const gchar **drivers,
guint16 vendor,
guint16 product,
GList *probes,
GError **error)
{
return MM_BASE_MODEM (mm_broadband_modem_gobi_new (sysfs_path,
- driver,
+ drivers,
mm_plugin_get_name (self),
vendor,
product));