diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2012-09-05 21:28:57 +0200 |
---|---|---|
committer | David Brown <davidb@codeaurora.org> | 2012-09-13 20:16:26 +0200 |
commit | 85a9f0f576372e033f0aa15485109aa0ee05fef3 (patch) | |
tree | e1122761ec715948ae842127128742998e9e6599 /arch/arm/mach-msm/common.h | |
parent | ARM: msm: Rename board-msm8x60 to signify its DT only status (diff) | |
download | linux-85a9f0f576372e033f0aa15485109aa0ee05fef3.tar.xz linux-85a9f0f576372e033f0aa15485109aa0ee05fef3.zip |
ARM: msm: Move io mapping prototypes to common.h
Consolidate the handful of iomapping functions into common.h so
that board files don't need to include mach/msm_iomap.h if they
don't need static virtual mapping addresses.
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: David Brown <davidb@codeaurora.org>
Diffstat (limited to 'arch/arm/mach-msm/common.h')
-rw-r--r-- | arch/arm/mach-msm/common.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-msm/common.h b/arch/arm/mach-msm/common.h index a20e78e58b0d..9975575a81b9 100644 --- a/arch/arm/mach-msm/common.h +++ b/arch/arm/mach-msm/common.h @@ -18,4 +18,14 @@ extern struct sys_timer msm8960_timer; extern struct sys_timer msm_dt_timer; extern struct sys_timer qsd8x50_timer; +extern void msm_map_common_io(void); +extern void msm_map_msm7x30_io(void); +extern void msm_map_msm8x60_io(void); +extern void msm_map_msm8960_io(void); +extern void msm_map_qsd8x50_io(void); + +extern void __iomem *__msm_ioremap_caller(unsigned long phys_addr, size_t size, + unsigned int mtype, void *caller); + + #endif |