From 4a374e24009388241649a43b89c97fc5dca15594 Mon Sep 17 00:00:00 2001 From: Tony Lindgren Date: Mon, 22 Dec 2008 17:09:49 +0200 Subject: [PATCH] Reset mailbox to mainline version This is to start using Hiroshi's branch against the mainline tree. Signed-off-by: Tony Lindgren --- arch/arm/mach-omap2/mailbox.c | 4 ++-- arch/arm/plat-omap/include/mach/mailbox.h | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/arch/arm/mach-omap2/mailbox.c b/arch/arm/mach-omap2/mailbox.c index 22546d0776a..32b7af3c610 100644 --- a/arch/arm/mach-omap2/mailbox.c +++ b/arch/arm/mach-omap2/mailbox.c @@ -75,12 +75,12 @@ static void omap2_mbox_enable_irq(struct omap_mbox *mbox, static inline unsigned int mbox_read_reg(unsigned int reg) { - return __raw_readl((void __iomem *)(mbox_base + reg)); + return __raw_readl(mbox_base + reg); } static inline void mbox_write_reg(unsigned int val, unsigned int reg) { - __raw_writel(val, (void __iomem *)(mbox_base + reg)); + __raw_writel(val, mbox_base + reg); } /* Mailbox H/W preparations */ diff --git a/arch/arm/plat-omap/include/mach/mailbox.h b/arch/arm/plat-omap/include/mach/mailbox.h index 9d3994b7ff6..7cbed9332e1 100644 --- a/arch/arm/plat-omap/include/mach/mailbox.h +++ b/arch/arm/plat-omap/include/mach/mailbox.h @@ -61,8 +61,6 @@ struct omap_mbox { void (*err_notify)(void); }; -extern struct omap_mbox mbox_dsp_info; - int omap_mbox_msg_send(struct omap_mbox *, mbox_msg_t msg, void *); void omap_mbox_init_seq(struct omap_mbox *); -- 2.41.0