From 82d0c258c3a9bf0dbabeb66d676fdae3691da00e Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 21 Mar 2012 21:10:30 -0700 Subject: [PATCH] swmodem: Add Sierra Wireless modem driver --- Makefile.am | 5 +++++ drivers/swmodem/swmodem.c | 46 +++++++++++++++++++++++++++++++++++++++ drivers/swmodem/swmodem.h | 22 +++++++++++++++++++ 3 files changed, 73 insertions(+) create mode 100644 drivers/swmodem/swmodem.c create mode 100644 drivers/swmodem/swmodem.h diff --git a/Makefile.am b/Makefile.am index 0472dfa3..1681b824 100644 --- a/Makefile.am +++ b/Makefile.am @@ -185,6 +185,11 @@ builtin_sources += drivers/atmodem/atutil.h \ drivers/nwmodem/nwmodem.c \ drivers/nwmodem/radio-settings.c +builtin_modules += swmodem +builtin_sources += drivers/atmodem/atutil.h \ + drivers/swmodem/swmodem.h \ + drivers/swmodem/swmodem.c + builtin_modules += huaweimodem builtin_sources += drivers/atmodem/atutil.h \ drivers/huaweimodem/huaweimodem.h \ diff --git a/drivers/swmodem/swmodem.c b/drivers/swmodem/swmodem.c new file mode 100644 index 00000000..789467c5 --- /dev/null +++ b/drivers/swmodem/swmodem.c @@ -0,0 +1,46 @@ +/* + * + * oFono - Open Source Telephony + * + * Copyright (C) 2008-2011 Intel Corporation. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include +#include + +#define OFONO_API_SUBJECT_TO_CHANGE +#include +#include + +#include "swmodem.h" + +static int swmodem_init(void) +{ + return 0; +} + +static void swmodem_exit(void) +{ +} + +OFONO_PLUGIN_DEFINE(swmodem, "Sierra modem driver", VERSION, + OFONO_PLUGIN_PRIORITY_DEFAULT, + swmodem_init, swmodem_exit) diff --git a/drivers/swmodem/swmodem.h b/drivers/swmodem/swmodem.h new file mode 100644 index 00000000..90deb948 --- /dev/null +++ b/drivers/swmodem/swmodem.h @@ -0,0 +1,22 @@ +/* + * + * oFono - Open Source Telephony + * + * Copyright (C) 2008-2011 Intel Corporation. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#include