summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDenis Kenzior <denis.kenzior@intel.com>2009-10-23 12:14:34 -0500
committerDenis Kenzior <denkenz@gmail.com>2009-10-23 17:05:56 -0500
commit14c116be369ac6c9c31ccf814e763aed6785f941 (patch)
treec26ac23587d05f10c73247e832b4af5c06c80ca8 /src
parentd6161ddb613b53db3062b4a3afdc1678f61d2aeb (diff)
downloadofono-14c116be369ac6c9c31ccf814e763aed6785f941.tar.bz2
Remove unused code and make compiler happy
Diffstat (limited to 'src')
-rw-r--r--src/gprs.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/gprs.c b/src/gprs.c
index 03066e2c..c45f366a 100644
--- a/src/gprs.c
+++ b/src/gprs.c
@@ -169,8 +169,6 @@ static void pri_set_active_callback(const struct ofono_error *error,
struct pri_context *ctx = data;
struct ofono_gprs_context *gc = ctx->gprs->context_driver;
DBusConnection *conn = ofono_dbus_get_connection();
- DBusMessage *reply;
- const char *path;
dbus_bool_t value;
if (error->type != OFONO_ERROR_TYPE_NO_ERROR) {
@@ -292,8 +290,6 @@ static DBusMessage *pri_set_type(struct pri_context *ctx, DBusConnection *conn,
static DBusMessage *pri_set_name(struct pri_context *ctx, DBusConnection *conn,
DBusMessage *msg, const char *name)
{
- int context_type;
-
if (ctx->name && g_str_equal(ctx->name, name))
return dbus_message_new_method_return(msg);
@@ -320,7 +316,6 @@ static DBusMessage *pri_set_property(DBusConnection *conn,
const char *property;
dbus_bool_t value;
const char *str;
- const char *path;
if (!dbus_message_iter_init(msg, &iter))
return __ofono_error_invalid_args(msg);
@@ -509,26 +504,6 @@ static char **gprs_contexts_path_list(GSList *context_list)
return objlist;
}
-static void gprs_generic_callback(const struct ofono_error *error, void *data)
-{
- struct ofono_gprs *gprs = data;
- DBusMessage *reply;
-
- if (error->type != OFONO_ERROR_TYPE_NO_ERROR)
- ofono_debug("command failed with error: %s",
- telephony_error_to_str(error));
-
- if (!gprs->pending)
- return;
-
- if (error->type == OFONO_ERROR_TYPE_NO_ERROR)
- reply = dbus_message_new_method_return(gprs->pending);
- else
- reply = __ofono_error_failed(gprs->pending);
-
- __ofono_dbus_pending_reply(&gprs->pending, reply);
-}
-
static void gprs_attach_callback(const struct ofono_error *error, void *data)
{
struct ofono_gprs *gprs = data;