diff options
author | Rajendra Nayak <rnayak@ti.com> | 2010-01-20 03:30:54 +0300 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2010-01-20 23:35:27 +0300 |
commit | 0324f59fc945b76337dbc18f4ad4b4383f683ae5 (patch) | |
tree | 9a810c11df7ad7057037439f2b49fc4e25681a9b /arch/arm/mach-omap2/prm.h | |
parent | 6468e3b18777ecfffa6738e365896be9f17403f2 (diff) | |
download | linux-0324f59fc945b76337dbc18f4ad4b4383f683ae5.tar.xz |
OMAP4: PRCM: Fix the base address for CHIRONSS reg defines
The CHIRONSS has its own local PRCM module and the register defines
need to use the CHIRONSS base and not the PRM base.
The changes are generated by updating the script which autogenerates
the file modifed in the patch.
Signed-off-by: Rajendra Nayak <rnayak@ti.com>
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Diffstat (limited to 'arch/arm/mach-omap2/prm.h')
-rw-r--r-- | arch/arm/mach-omap2/prm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/prm.h b/arch/arm/mach-omap2/prm.h index ea050ce188a7..40f006285163 100644 --- a/arch/arm/mach-omap2/prm.h +++ b/arch/arm/mach-omap2/prm.h @@ -24,6 +24,8 @@ OMAP2_L4_IO_ADDRESS(OMAP3430_PRM_BASE + (module) + (reg)) #define OMAP44XX_PRM_REGADDR(module, reg) \ OMAP2_L4_IO_ADDRESS(OMAP4430_PRM_BASE + (module) + (reg)) +#define OMAP44XX_CHIRONSS_REGADDR(module, reg) \ + OMAP2_L4_IO_ADDRESS(OMAP4430_CHIRONSS_BASE + (module) + (reg)) #include "prm44xx.h" |