From fc3f937a67353d03a6d526ca23e12a225ec2d021 Mon Sep 17 00:00:00 2001 From: Alex J Lennon Date: Tue, 12 May 2015 18:23:02 +0100 Subject: [PATCH] udev: Add support for ehs6 name As with tc65, ehs6 makes use of cinterion plugin --- plugins/udev.c | 2 ++ 1 file changed, 2 insertions(+) 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)