summaryrefslogtreecommitdiff
path: root/src/devices/bluetooth
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2014-05-20 16:36:42 -0400
committerDan Winship <danw@gnome.org>2014-06-26 12:53:33 -0400
commit1a3a5c4526eaa0c51303ba783db08e2007792e80 (patch)
tree3e4a47fd8ba97cbaaef7e5f7f1db1d68006618a1 /src/devices/bluetooth
parentc3e8ddf07542afe19aa501c7094e6142744cc2b2 (diff)
downloadNetworkManager-1a3a5c4526eaa0c51303ba783db08e2007792e80.tar.gz
wwan, bluetooth: drop support for ModemManager 0.7
Diffstat (limited to 'src/devices/bluetooth')
-rw-r--r--src/devices/bluetooth/nm-device-bt.c20
1 files changed, 3 insertions, 17 deletions
diff --git a/src/devices/bluetooth/nm-device-bt.c b/src/devices/bluetooth/nm-device-bt.c
index 8c2b57e79a..e9c14e837d 100644
--- a/src/devices/bluetooth/nm-device-bt.c
+++ b/src/devices/bluetooth/nm-device-bt.c
@@ -47,8 +47,7 @@
#include "nm-bt-enum-types.h"
#include "nm-utils.h"
-#define MM_OLD_DBUS_SERVICE "org.freedesktop.ModemManager"
-#define MM_NEW_DBUS_SERVICE "org.freedesktop.ModemManager1"
+#define MM_DBUS_SERVICE "org.freedesktop.ModemManager1"
G_DEFINE_TYPE (NMDeviceBt, nm_device_bt, NM_TYPE_DEVICE)
@@ -674,11 +673,6 @@ component_added (NMDevice *device, GObject *component)
g_signal_connect (modem, NM_MODEM_STATE_CHANGED, G_CALLBACK (modem_state_cb), self);
g_signal_connect (modem, NM_MODEM_REMOVED, G_CALLBACK (modem_removed_cb), self);
- /* In the old ModemManager the data port is known from the very beginning;
- * while in the new ModemManager the data port is set afterwards when the bearer gets
- * created */
- if (modem_data_port)
- nm_device_set_ip_iface (NM_DEVICE (self), modem_data_port);
g_signal_connect (modem, "notify::" NM_MODEM_DATA_PORT, G_CALLBACK (data_port_changed_cb), self);
/* Kick off the modem connection */
@@ -1038,11 +1032,7 @@ mm_name_owner_changed (NMDBusManager *dbus_mgr,
gboolean new_owner_good;
/* Can't handle the signal if its not from the modem service */
- if ( strcmp (MM_OLD_DBUS_SERVICE, name) != 0
-#if WITH_MODEM_MANAGER_1
- && strcmp (MM_NEW_DBUS_SERVICE, name) != 0
-#endif
- )
+ if (strcmp (MM_DBUS_SERVICE, name) != 0)
return;
old_owner_good = (old_owner && strlen (old_owner));
@@ -1096,11 +1086,7 @@ nm_device_bt_init (NMDeviceBt *self)
self);
/* Initial check to see if ModemManager is running */
- mm_running = nm_dbus_manager_name_has_owner (priv->dbus_mgr, MM_OLD_DBUS_SERVICE);
-#if WITH_MODEM_MANAGER_1
- if (!mm_running)
- mm_running = nm_dbus_manager_name_has_owner (priv->dbus_mgr, MM_NEW_DBUS_SERVICE);
-#endif
+ mm_running = nm_dbus_manager_name_has_owner (priv->dbus_mgr, MM_DBUS_SERVICE);
set_mm_running (self, mm_running);
}