diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2010-06-11 15:51:43 +0000 |
---|---|---|
committer | Hiroshi DOYU <Hiroshi.DOYU@nokia.com> | 2010-08-04 15:50:18 +0300 |
commit | fc9960b2823d581ab8a1541fc8b9f2748ee3e5f2 (patch) | |
tree | 1c8d4e40b67b99f80ce39b375af16064c063ad66 /arch | |
parent | 4b191eb9604a6eb6f411c47814707e0ff8027c44 (diff) | |
download | op-kernel-dev-fc9960b2823d581ab8a1541fc8b9f2748ee3e5f2.zip op-kernel-dev-fc9960b2823d581ab8a1541fc8b9f2748ee3e5f2.tar.gz |
omap: mailbox: remove unecessary fields
Nobody is using them.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/plat-omap/include/plat/mailbox.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/arm/plat-omap/include/plat/mailbox.h b/arch/arm/plat-omap/include/plat/mailbox.h index 0c3c4a5..aad8bf8 100644 --- a/arch/arm/plat-omap/include/plat/mailbox.h +++ b/arch/arm/plat-omap/include/plat/mailbox.h @@ -52,19 +52,11 @@ struct omap_mbox_queue { struct omap_mbox { char *name; unsigned int irq; - struct omap_mbox_queue *txq, *rxq; - struct omap_mbox_ops *ops; - - mbox_msg_t seq_snd, seq_rcv; - struct device *dev; - struct omap_mbox *next; void *priv; - - void (*err_notify)(void); }; int omap_mbox_msg_send(struct omap_mbox *, mbox_msg_t msg); |