File mm-revert-data-device-to-device.patch of Package ModemManager
diff --git a/introspection/mm-modem.xml b/introspection/mm-modem.xml
index ecf5ec8..fa81202 100644
--- a/introspection/mm-modem.xml
+++ b/introspection/mm-modem.xml
@@ -49,7 +49,7 @@
</arg>
</method>
- <property name="Device" type="s" access="read">
+ <property name="DataDevice" type="s" access="read">
<tp:docstring>
The device to use for IP configuration and traffic.
</tp:docstring>
diff --git a/src/mm-modem.c b/src/mm-modem.c
index 7bf913e..69cf535 100644
--- a/src/mm-modem.c
+++ b/src/mm-modem.c
@@ -211,8 +211,8 @@ mm_modem_init (gpointer g_iface)
g_object_interface_install_property
(g_iface,
g_param_spec_string (MM_MODEM_DEVICE,
- "Device",
- "Device",
+ "DataDevice",
+ "DataDevice",
NULL,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
diff --git a/src/mm-serial.c b/src/mm-serial.c
index 70510c0..1289a95 100644
--- a/src/mm-serial.c
+++ b/src/mm-serial.c
@@ -1025,7 +1025,7 @@ mm_serial_class_init (MMSerialClass *klass)
g_object_class_install_property
(object_class, PROP_DEVICE,
g_param_spec_string (MM_SERIAL_DEVICE,
- "Device",
+ "DataDevice",
"Serial device",
NULL,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));