diff options
author | Dan Williams <dcbw@redhat.com> | 2009-08-19 17:08:13 -0500 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2009-08-19 17:08:13 -0500 |
commit | 1a75d8d010e76efb44af6e1d2d26f5a2d7808647 (patch) | |
tree | 35201aaf6adb621a0d8588cdcf462cb1d6f70fbf | |
parent | ca767e4037ce08ab23d188341ed31139dee0bd09 (diff) |
moto-c: claim Motorola C380 too (bgo #591978)
-rw-r--r-- | plugins/mm-plugin-moto-c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mm-plugin-moto-c.c b/plugins/mm-plugin-moto-c.c index af78ca91..5b32a1ee 100644 --- a/plugins/mm-plugin-moto-c.c +++ b/plugins/mm-plugin-moto-c.c @@ -74,7 +74,7 @@ supports_port (MMPluginBase *base, return MM_PLUGIN_SUPPORTS_PORT_UNSUPPORTED; tmp = g_udev_device_get_property (port, "ID_MODEL_ID"); - if (!tmp || strcmp (tmp, "3802")) + if (!tmp || (strcmp (tmp, "3802") && strcmp (tmp, "4902"))) return MM_PLUGIN_SUPPORTS_PORT_UNSUPPORTED; if (mm_plugin_base_get_cached_port_capabilities (base, port, &cached)) { |