aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-omap/mailbox.c
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2007-10-26 05:40:22 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2008-01-26 14:50:00 +0000
commit2a7057e306b198e1e0d7db8615d8e9c69b880913 (patch)
tree7df90bf748195b4cc061e7ee5c00b2078468321c /arch/arm/plat-omap/mailbox.c
parent[ARM] Misc minor interrupt handler cleanups (diff)
downloadlinux-dev-2a7057e306b198e1e0d7db8615d8e9c69b880913.tar.xz
linux-dev-2a7057e306b198e1e0d7db8615d8e9c69b880913.zip
[ARM] Remove pointless casts from void pointers,
mostly in and around irq handlers. Signed-off-by: Jeff Garzik <jgarzik@redhat.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/plat-omap/mailbox.c')
-rw-r--r--arch/arm/plat-omap/mailbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-omap/mailbox.c b/arch/arm/plat-omap/mailbox.c
index 0360b1f14d11..45a77df668f1 100644
--- a/arch/arm/plat-omap/mailbox.c
+++ b/arch/arm/plat-omap/mailbox.c
@@ -212,7 +212,7 @@ static void __mbox_rx_interrupt(struct omap_mbox *mbox)
static irqreturn_t mbox_interrupt(int irq, void *p)
{
- struct omap_mbox *mbox = (struct omap_mbox *)p;
+ struct omap_mbox *mbox = p;
if (is_mbox_irq(mbox, IRQ_TX))
__mbox_tx_interrupt(mbox);