3 * oFono - Open Source Telephony
5 * Copyright (C) 2011-2012 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 #define OFONO_API_SUBJECT_TO_CHANGE
27 #include <ofono/plugin.h>
31 static int qmimodem_init(void)
36 qmi_sim_legacy_init();
41 qmi_gprs_context_init();
42 qmi_radio_settings_init();
43 qmi_location_reporting_init();
48 static void qmimodem_exit(void)
50 qmi_location_reporting_exit();
51 qmi_radio_settings_exit();
52 qmi_gprs_context_exit();
57 qmi_sim_legacy_exit();
63 OFONO_PLUGIN_DEFINE(qmimodem, "Qualcomm QMI modem driver", VERSION,
64 OFONO_PLUGIN_PRIORITY_DEFAULT, qmimodem_init, qmimodem_exit)