From 85d43570fd101e69b1ed622bf58e4d66bb6a5e1f Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sun, 27 May 2012 10:13:55 +0200 Subject: build: Add skeleton for Qualcomm QMI modem driver --- drivers/qmimodem/qmimodem.c | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 drivers/qmimodem/qmimodem.c (limited to 'drivers/qmimodem/qmimodem.c') diff --git a/drivers/qmimodem/qmimodem.c b/drivers/qmimodem/qmimodem.c new file mode 100644 index 00000000..afbe4cde --- /dev/null +++ b/drivers/qmimodem/qmimodem.c @@ -0,0 +1,41 @@ +/* + * + * 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 + +#define OFONO_API_SUBJECT_TO_CHANGE +#include + +#include "qmimodem.h" + +static int qmimodem_init(void) +{ + return 0; +} + +static void qmimodem_exit(void) +{ +} + +OFONO_PLUGIN_DEFINE(qmimodem, "Qualcomm QMI modem driver", VERSION, + OFONO_PLUGIN_PRIORITY_DEFAULT, qmimodem_init, qmimodem_exit) -- cgit v1.2.3