summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-11-26 09:46:42 +0100
committerMarcel Holtmann <marcel@holtmann.org>2009-11-26 09:46:42 +0100
commit378de73cbf88e5522fe0102c6a913a5ddb55e84c (patch)
tree02d5f89772a1d2a4f8997146f4331172b06de105 /plugins
parenta2601994cd564bb81d2240c98261de17a6b830e4 (diff)
downloadconnman-378de73cbf88e5522fe0102c6a913a5ddb55e84c.tar.gz
connman-378de73cbf88e5522fe0102c6a913a5ddb55e84c.tar.bz2
connman-378de73cbf88e5522fe0102c6a913a5ddb55e84c.zip
Remove empty plugins for Novatel and Huawei modems
Diffstat (limited to 'plugins')
-rw-r--r--plugins/huawei.c83
-rw-r--r--plugins/novatel.c83
2 files changed, 0 insertions, 166 deletions
diff --git a/plugins/huawei.c b/plugins/huawei.c
deleted file mode 100644
index c1a2c0d5..00000000
--- a/plugins/huawei.c
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- *
- * Connection Manager
- *
- * Copyright (C) 2007-2009 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 <config.h>
-#endif
-
-#define CONNMAN_API_SUBJECT_TO_CHANGE
-#include <connman/plugin.h>
-#include <connman/device.h>
-#include <connman/log.h>
-
-#include "modem.h"
-
-static int huawei_probe(struct connman_device *device)
-{
- DBG("device %p", device);
-
- return 0;
-}
-
-static void huawei_remove(struct connman_device *device)
-{
- DBG("device %p", device);
-}
-
-static int huawei_enable(struct connman_device *device)
-{
- DBG("device %p", device);
-
- connman_device_set_powered(device, TRUE);
-
- return 0;
-}
-
-static int huawei_disable(struct connman_device *device)
-{
- DBG("device %p", device);
-
- connman_device_set_powered(device, FALSE);
-
- return 0;
-}
-
-static struct connman_device_driver huawei_driver = {
- .name = "huawei",
- .type = CONNMAN_DEVICE_TYPE_HUAWEI,
- .probe = huawei_probe,
- .remove = huawei_remove,
- .enable = huawei_enable,
- .disable = huawei_disable,
-};
-
-static int huawei_init(void)
-{
- return connman_device_driver_register(&huawei_driver);
-}
-
-static void huawei_exit(void)
-{
- connman_device_driver_unregister(&huawei_driver);
-}
-
-CONNMAN_PLUGIN_DEFINE(huawei, "HUAWEI Mobile device plugin", VERSION,
- CONNMAN_PLUGIN_PRIORITY_DEFAULT, huawei_init, huawei_exit)
diff --git a/plugins/novatel.c b/plugins/novatel.c
deleted file mode 100644
index 4c0c9aac..00000000
--- a/plugins/novatel.c
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- *
- * Connection Manager
- *
- * Copyright (C) 2007-2009 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 <config.h>
-#endif
-
-#define CONNMAN_API_SUBJECT_TO_CHANGE
-#include <connman/plugin.h>
-#include <connman/device.h>
-#include <connman/log.h>
-
-#include "modem.h"
-
-static int novatel_probe(struct connman_device *device)
-{
- DBG("device %p", device);
-
- return 0;
-}
-
-static void novatel_remove(struct connman_device *device)
-{
- DBG("device %p", device);
-}
-
-static int novatel_enable(struct connman_device *device)
-{
- DBG("device %p", device);
-
- connman_device_set_powered(device, TRUE);
-
- return 0;
-}
-
-static int novatel_disable(struct connman_device *device)
-{
- DBG("device %p", device);
-
- connman_device_set_powered(device, FALSE);
-
- return 0;
-}
-
-static struct connman_device_driver novatel_driver = {
- .name = "novatel",
- .type = CONNMAN_DEVICE_TYPE_NOVATEL,
- .probe = novatel_probe,
- .remove = novatel_remove,
- .enable = novatel_enable,
- .disable = novatel_disable,
-};
-
-static int novatel_init(void)
-{
- return connman_device_driver_register(&novatel_driver);
-}
-
-static void novatel_exit(void)
-{
- connman_device_driver_unregister(&novatel_driver);
-}
-
-CONNMAN_PLUGIN_DEFINE(novatel, "Novatel Wireless device plugin", VERSION,
- CONNMAN_PLUGIN_PRIORITY_DEFAULT, novatel_init, novatel_exit)