diff options
author | Daniel Walker <dwalker@codeaurora.org> | 2010-03-17 10:51:10 -0700 |
---|---|---|
committer | Daniel Walker <dwalker@codeaurora.org> | 2010-05-12 09:19:04 -0700 |
commit | 74df1d07ee01b7276cba64160ea6dfe195de008f (patch) | |
tree | f0697344edc0f0d7fa90bd6c7b7b6315c90a5f20 /arch/arm/mach-msm/smd.c | |
parent | 1a86fbc167fdf8ac387a52d49782d7a5bc1d9ac9 (diff) |
arm: msm: smd: msm7x30 a2m clean up
This moves the msm_a2m_int() function into the header, and
does a small macro clean up to be more inline with Linux
norms. No functional changes.
Signed-off-by: Daniel Walker <dwalker@codeaurora.org>
Diffstat (limited to 'arch/arm/mach-msm/smd.c')
-rw-r--r-- | arch/arm/mach-msm/smd.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/arch/arm/mach-msm/smd.c b/arch/arm/mach-msm/smd.c index 2e32d9ab3609..2a9b85ca5c07 100644 --- a/arch/arm/mach-msm/smd.c +++ b/arch/arm/mach-msm/smd.c @@ -26,10 +26,8 @@ #include <linux/slab.h> #include <linux/debugfs.h> #include <linux/delay.h> -#include <linux/io.h> #include <mach/msm_smd.h> -#include <mach/msm_iomap.h> #include <mach/system.h> #include "smd_private.h" @@ -69,16 +67,6 @@ static void smd_diag(void); static unsigned last_heap_free = 0xffffffff; -static inline void msm_a2m_int(uint32_t irq) -{ -#if defined(CONFIG_ARCH_MSM7X30) - writel(1 << irq, MSM_GCC_BASE + 0x8); -#else - writel(1, MSM_CSR_BASE + 0x400 + (irq * 4)); -#endif -} - - static inline void notify_other_smsm(void) { msm_a2m_int(5); |