From 3ab93f4a2178becb3d34396519c1017643c2f085 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Fri, 31 May 2019 11:27:21 -0500 Subject: [PATCH] speedupcdma: Use at_util_open_device --- plugins/speedupcdma.c | 30 ++---------------------------- 1 file changed, 2 insertions(+), 28 deletions(-) diff --git a/plugins/speedupcdma.c b/plugins/speedupcdma.c index 8e5f3243..779c37bd 100644 --- a/plugins/speedupcdma.c +++ b/plugins/speedupcdma.c @@ -38,6 +38,7 @@ #include #include +#include "drivers/atmodem/atutil.h" #include "drivers/atmodem/vendor.h" struct speedupcdma_data { @@ -102,34 +103,7 @@ static void cfun_enable(gboolean ok, GAtResult *result, gpointer user_data) static GAtChat *open_device(struct ofono_modem *modem, const char *key, char *debug) { - const char *device; - GIOChannel *channel; - GAtSyntax *syntax; - GAtChat *chat; - - device = ofono_modem_get_string(modem, key); - if (device == NULL) - return NULL; - - DBG("%s %s", key, device); - - channel = g_at_tty_open(device, NULL); - if (channel == NULL) - return NULL; - - syntax = g_at_syntax_new_gsm_permissive(); - chat = g_at_chat_new(channel, syntax); - g_at_syntax_unref(syntax); - - g_io_channel_unref(channel); - - if (chat == NULL) - return NULL; - - if (getenv("OFONO_AT_DEBUG")) - g_at_chat_set_debug(chat, speedupcdma_debug, debug); - - return chat; + return at_util_open_device(modem, key, speedupcdma_debug, debug, NULL); } static int speedupcdma_enable(struct ofono_modem *modem)