summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gatchat/gatmux.c10
-rw-r--r--gatchat/gsm0710.c2
2 files changed, 0 insertions, 12 deletions
diff --git a/gatchat/gatmux.c b/gatchat/gatmux.c
index 4390b336..c7834837 100644
--- a/gatchat/gatmux.c
+++ b/gatchat/gatmux.c
@@ -141,14 +141,6 @@ static void deliver_status(struct gsm0710_context *ctx,
g_main_context_wakeup(context);
}
-static void open_channel(struct gsm0710_context *ctx, int channel)
-{
-}
-
-static void close_channel(struct gsm0710_context *ctx, int channel)
-{
-}
-
static void debug_message(struct gsm0710_context *ctx, const char *msg)
{
}
@@ -181,8 +173,6 @@ GAtMux *g_at_mux_new(GIOChannel *channel)
mux->ctx.terminate = do_terminate;
mux->ctx.deliver_data = deliver_data;
mux->ctx.deliver_status = deliver_status;
- mux->ctx.open_channel = open_channel;
- mux->ctx.close_channel = close_channel;
mux->ctx.debug_message = debug_message;
return mux;
diff --git a/gatchat/gsm0710.c b/gatchat/gsm0710.c
index a94b4d1d..80036807 100644
--- a/gatchat/gsm0710.c
+++ b/gatchat/gsm0710.c
@@ -54,8 +54,6 @@ void gsm0710_initialize(struct gsm0710_context *ctx)
ctx->deliver_data = NULL;
ctx->deliver_status = NULL;
ctx->debug_message = NULL;
- ctx->open_channel = NULL;
- ctx->close_channel = NULL;
ctx->terminate = NULL;
ctx->packet_filter = NULL;
}