summaryrefslogtreecommitdiff
path: root/gisi/modem.c
diff options
context:
space:
mode:
Diffstat (limited to 'gisi/modem.c')
-rw-r--r--gisi/modem.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/gisi/modem.c b/gisi/modem.c
index f80d671d..87503679 100644
--- a/gisi/modem.c
+++ b/gisi/modem.c
@@ -156,8 +156,6 @@ static void pending_dispatch(GIsiPending *pend, GIsiMessage *msg)
g_isi_msg_resource(msg), g_isi_msg_id(msg),
g_isi_msg_utid(msg));
- msg->private = pend;
-
pend->notify(msg, pend->data);
}
@@ -177,8 +175,6 @@ static void pending_remove_and_dispatch(GIsiPending *op, GIsiMessage *msg)
g_isi_msg_resource(msg), g_isi_msg_id(msg),
g_isi_msg_utid(msg));
- msg->private = op;
-
op->notify(msg, op->data);
destroy:
@@ -770,11 +766,6 @@ uint8_t g_isi_request_utid(GIsiPending *resp)
return resp != NULL ? resp->utid : 0;
}
-GIsiPending *g_isi_pending_from_msg(const GIsiMessage *msg)
-{
- return msg != NULL ? msg->private : NULL;
-}
-
void g_isi_pending_remove(GIsiPending *op)
{
if (op == NULL)