summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorAlex J Lennon <ajlennon@dynamicdevices.co.uk>2015-05-12 18:23:02 +0100
committerDenis Kenzior <denkenz@gmail.com>2015-05-13 09:57:53 -0500
commitfc3f937a67353d03a6d526ca23e12a225ec2d021 (patch)
tree3b65825ab75c3de302282dd8ae9693be5e092428 /plugins
parent7d4a19b1141804c922ad280762a0c7c6d05ed32e (diff)
downloadofono-fc3f937a67353d03a6d526ca23e12a225ec2d021.tar.bz2
udev: Add support for ehs6 name
As with tc65, ehs6 makes use of cinterion plugin
Diffstat (limited to 'plugins')
-rw-r--r--plugins/udev.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/udev.c b/plugins/udev.c
index 63302285..3c90e40d 100644
--- a/plugins/udev.c
+++ b/plugins/udev.c
@@ -245,6 +245,8 @@ static void add_modem(struct udev_device *udev_device)
if(g_strcmp0(driver, "tc65") == 0)
driver = "cinterion";
+ if(g_strcmp0(driver, "ehs6") == 0)
+ driver = "cinterion";
modem = ofono_modem_create(NULL, driver);
if (modem == NULL)