summaryrefslogtreecommitdiff
path: root/drivers/staging/tidspbridge/core/tiomap_io.c
diff options
context:
space:
mode:
authorNishanth Menon <nm@ti.com>2010-07-12 17:56:02 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2010-07-22 10:50:15 -0700
commit7124cb171108dea386b2c81334605da1d6f4554a (patch)
treed4cb7637779e758e13c2a456cecad95523c50eea /drivers/staging/tidspbridge/core/tiomap_io.c
parent2094f12d440c5a9fae032932266fa4a44135194c (diff)
staging: tidspbridge: remove custom typedef reg_uword32
use readl, writel to get and set the register instead. Signed-off-by: Nishanth Menon <nm@ti.com> Reviewed-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/tidspbridge/core/tiomap_io.c')
-rw-r--r--drivers/staging/tidspbridge/core/tiomap_io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/tidspbridge/core/tiomap_io.c b/drivers/staging/tidspbridge/core/tiomap_io.c
index 3f6d084ca503..4153eefce3fe 100644
--- a/drivers/staging/tidspbridge/core/tiomap_io.c
+++ b/drivers/staging/tidspbridge/core/tiomap_io.c
@@ -439,7 +439,7 @@ int sm_interrupt_dsp(struct bridge_dev_context *dev_context, u16 mb_val)
omap_mbox_restore_ctx(dev_context->mbox);
/* Access MMU SYS CONFIG register to generate a short wakeup */
- temp = *(reg_uword32 *) (resources->dw_dmmu_base + 0x10);
+ temp = readl(resources->dw_dmmu_base + 0x10);
dev_context->dw_brd_state = BRD_RUNNING;
} else if (dev_context->dw_brd_state == BRD_RETENTION) {