|
@@ -88,7 +88,6 @@ static int __mbox_msg_send(struct omap_mbox *mbox, mbox_msg_t msg)
|
|
|
|
|
|
struct omap_msg_tx_data {
|
|
|
mbox_msg_t msg;
|
|
|
- void *arg;
|
|
|
};
|
|
|
|
|
|
static void omap_msg_tx_end_io(struct request *rq, int error)
|
|
@@ -97,7 +96,7 @@ static void omap_msg_tx_end_io(struct request *rq, int error)
|
|
|
__blk_put_request(rq->q, rq);
|
|
|
}
|
|
|
|
|
|
-int omap_mbox_msg_send(struct omap_mbox *mbox, mbox_msg_t msg, void* arg)
|
|
|
+int omap_mbox_msg_send(struct omap_mbox *mbox, mbox_msg_t msg)
|
|
|
{
|
|
|
struct omap_msg_tx_data *tx_data;
|
|
|
struct request *rq;
|
|
@@ -114,7 +113,6 @@ int omap_mbox_msg_send(struct omap_mbox *mbox, mbox_msg_t msg, void* arg)
|
|
|
}
|
|
|
|
|
|
tx_data->msg = msg;
|
|
|
- tx_data->arg = arg;
|
|
|
rq->end_io = omap_msg_tx_end_io;
|
|
|
blk_insert_request(q, rq, 0, tx_data);
|
|
|
|