diff options
author | Eric Shienbrood <ers@google.com> | 2011-06-28 10:46:56 -0400 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2011-06-30 12:30:43 -0500 |
commit | 881f928c40f1460bcb03fae3eaf96b23f40fca3f (patch) | |
tree | 234863905dacf40a684e5b0d11c9628a005f84b1 | |
parent | 1b73fa154160a51634633a4bfd886aa1d27e72b3 (diff) |
samsung: add product ID for the Y3400 module.
The Y3400 is functionally nearly identical to the Y3300.
-rwxr-xr-x | plugins/mm-plugin-samsung.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mm-plugin-samsung.c b/plugins/mm-plugin-samsung.c index 350d4ded..9ea2051e 100755 --- a/plugins/mm-plugin-samsung.c +++ b/plugins/mm-plugin-samsung.c @@ -84,7 +84,7 @@ supports_port (MMPluginBase *base, return MM_PLUGIN_SUPPORTS_PORT_UNSUPPORTED; /* Product ID check */ - if (product != 0x6872) + if (product != 0x6872 && product != 0x6906) return MM_PLUGIN_SUPPORTS_PORT_UNSUPPORTED; /* The ethernet ports are obviously supported and don't need probing */ |