From: Pekka Pessi Date: Tue, 18 Jan 2011 21:27:09 +0000 (+0200) Subject: gisi: remove g_isi_pending_from_msg() X-Git-Tag: 0.39~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=110083803759e690b97ac5abedf517dd3f018cc5;p=platform%2Fupstream%2Fofono.git gisi: remove g_isi_pending_from_msg() --- diff --git a/gisi/modem.c b/gisi/modem.c index f80d671..8750367 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) diff --git a/gisi/modem.h b/gisi/modem.h index 0de720d..f0a1617 100644 --- a/gisi/modem.h +++ b/gisi/modem.h @@ -107,8 +107,6 @@ int g_isi_response_vsend(GIsiModem *modem, const GIsiMessage *req, const struct iovec *__restrict iov, size_t iovlen); -GIsiPending *g_isi_pending_from_msg(const GIsiMessage *msg); - void g_isi_pending_remove(GIsiPending *op); void g_isi_pending_set_owner(GIsiPending *op, gpointer owner); void g_isi_remove_pending_by_owner(GIsiModem *modem, uint8_t resource,