diff options
author | Dan Williams <dcbw@redhat.com> | 2010-05-01 22:44:00 -0700 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2010-05-01 22:44:00 -0700 |
commit | f0e0861aa4d823418695dc8096dffebb26c29849 (patch) | |
tree | 8cdcea66560580d05dc3e3ea4a343e50742d7382 /plugins/mm-plugin-longcheer.c | |
parent | da8cf4a7c2931eee9c0ff44b07e4044bb796600b (diff) |
longcheer: add support for access technology and allowed modes
Diffstat (limited to 'plugins/mm-plugin-longcheer.c')
-rw-r--r-- | plugins/mm-plugin-longcheer.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/plugins/mm-plugin-longcheer.c b/plugins/mm-plugin-longcheer.c index f1b43ecf..b8b5b2ab 100644 --- a/plugins/mm-plugin-longcheer.c +++ b/plugins/mm-plugin-longcheer.c @@ -11,12 +11,13 @@ * GNU General Public License for more details: * * Copyright (C) 2008 - 2009 Novell, Inc. - * Copyright (C) 2009 Red Hat, Inc. + * Copyright (C) 2009 - 2010 Red Hat, Inc. */ #include <string.h> #include <gmodule.h> #include "mm-plugin-longcheer.h" +#include "mm-modem-longcheer-gsm.h" #include "mm-generic-gsm.h" #include "mm-generic-cdma.h" @@ -140,9 +141,9 @@ grab_port (MMPluginBase *base, sysfs_path = mm_plugin_base_supports_task_get_physdev_path (task); if (!existing) { if (caps & MM_PLUGIN_BASE_PORT_CAP_GSM) { - modem = mm_generic_gsm_new (sysfs_path, - mm_plugin_base_supports_task_get_driver (task), - mm_plugin_get_name (MM_PLUGIN (base))); + modem = mm_modem_longcheer_gsm_new (sysfs_path, + mm_plugin_base_supports_task_get_driver (task), + mm_plugin_get_name (MM_PLUGIN (base))); } else if (caps & CAP_CDMA) { modem = mm_generic_cdma_new (sysfs_path, mm_plugin_base_supports_task_get_driver (task), |