aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-msm/smd.c
diff options
context:
space:
mode:
authorDaniel Walker <dwalker@codeaurora.org>2010-03-17 13:51:10 -0400
committerDaniel Walker <dwalker@codeaurora.org>2010-05-12 12:19:04 -0400
commit74df1d07ee01b7276cba64160ea6dfe195de008f (patch)
treef0697344edc0f0d7fa90bd6c7b7b6315c90a5f20 /arch/arm/mach-msm/smd.c
parent1a86fbc167fdf8ac387a52d49782d7a5bc1d9ac9 (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.c12
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 @@
26#include <linux/slab.h> 26#include <linux/slab.h>
27#include <linux/debugfs.h> 27#include <linux/debugfs.h>
28#include <linux/delay.h> 28#include <linux/delay.h>
29#include <linux/io.h>
30 29
31#include <mach/msm_smd.h> 30#include <mach/msm_smd.h>
32#include <mach/msm_iomap.h>
33#include <mach/system.h> 31#include <mach/system.h>
34 32
35#include "smd_private.h" 33#include "smd_private.h"
@@ -69,16 +67,6 @@ static void smd_diag(void);
69 67
70static unsigned last_heap_free = 0xffffffff; 68static unsigned last_heap_free = 0xffffffff;
71 69
72static inline void msm_a2m_int(uint32_t irq)
73{
74#if defined(CONFIG_ARCH_MSM7X30)
75 writel(1 << irq, MSM_GCC_BASE + 0x8);
76#else
77 writel(1, MSM_CSR_BASE + 0x400 + (irq * 4));
78#endif
79}
80
81
82static inline void notify_other_smsm(void) 70static inline void notify_other_smsm(void)
83{ 71{
84 msm_a2m_int(5); 72 msm_a2m_int(5);