diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2013-02-26 20:57:37 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2013-02-26 21:02:12 +0100 |
commit | 3f3950bd12e4e09bf6505e7a3f96acdee924ad1c (patch) | |
tree | 3a82629283d22cc7f4695c911f620dac66877890 /plugins/x22x | |
parent | 8d74b11bd3a5627490a25c52ffddae0843c2ee49 (diff) | |
download | ModemManager-3f3950bd12e4e09bf6505e7a3f96acdee924ad1c.tar.gz |
plugins: log about all port type hints received from udev
Diffstat (limited to 'plugins/x22x')
-rw-r--r-- | plugins/x22x/mm-plugin-x22x.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/plugins/x22x/mm-plugin-x22x.c b/plugins/x22x/mm-plugin-x22x.c index 096069071..53440d140 100644 --- a/plugins/x22x/mm-plugin-x22x.c +++ b/plugins/x22x/mm-plugin-x22x.c @@ -212,11 +212,17 @@ grab_port (MMPlugin *self, * be the data/primary port on these devices. We have to tag them based on * what the Windows .INF files say the port layout should be. */ - if (g_udev_device_get_property_as_boolean (port, "ID_MM_X22X_PORT_TYPE_MODEM")) + if (g_udev_device_get_property_as_boolean (port, "ID_MM_X22X_PORT_TYPE_MODEM")) { + mm_dbg ("x22x: AT port '%s/%s' flagged as primary", + mm_port_probe_get_port_subsys (probe), + mm_port_probe_get_port_name (probe)); pflags = MM_AT_PORT_FLAG_PRIMARY; - else if (g_udev_device_get_property_as_boolean (port, "ID_MM_X22X_PORT_TYPE_AUX")) + } else if (g_udev_device_get_property_as_boolean (port, "ID_MM_X22X_PORT_TYPE_AUX")) { + mm_dbg ("x22x: AT port '%s/%s' flagged as secondary", + mm_port_probe_get_port_subsys (probe), + mm_port_probe_get_port_name (probe)); pflags = MM_AT_PORT_FLAG_SECONDARY; - else { + } else { /* If the port was tagged by the udev rules but isn't a primary or secondary, * then ignore it to guard against race conditions if a device just happens * to show up with more than two AT-capable ports. |