* [PATCH 4/7] arm: msm: smd: msm7x30 a2m clean up
@ 2010-03-26 23:55 Daniel Walker
2010-03-27 6:19 ` Pavel Machek
0 siblings, 1 reply; 2+ messages in thread
From: Daniel Walker @ 2010-03-26 23:55 UTC (permalink / raw)
To: linux-arm-msm
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>
---
arch/arm/mach-msm/smd.c | 12 ------------
arch/arm/mach-msm/smd_private.h | 16 ++++++++++++++++
2 files changed, 16 insertions(+), 12 deletions(-)
diff --git a/arch/arm/mach-msm/smd.c b/arch/arm/mach-msm/smd.c
index 2e32d9a..2a9b85c 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);
diff --git a/arch/arm/mach-msm/smd_private.h b/arch/arm/mach-msm/smd_private.h
index a403424..54a6007 100644
--- a/arch/arm/mach-msm/smd_private.h
+++ b/arch/arm/mach-msm/smd_private.h
@@ -19,6 +19,9 @@
#include <linux/platform_device.h>
#include <linux/spinlock.h>
#include <linux/list.h>
+#include <linux/io.h>
+
+#include <mach/msm_iomap.h>
struct smem_heap_info {
unsigned initialized;
@@ -384,4 +387,17 @@ static inline int _smd_alloc_channel(struct smd_channel *ch)
}
#endif /* CONFIG_ARCH_MSM7X00A */
+#if defined(CONFIG_ARCH_MSM7X30)
+static inline void msm_a2m_int(uint32_t irq)
+{
+ writel(1 << irq, MSM_GCC_BASE + 0x8);
+}
+#else
+static inline void msm_a2m_int(uint32_t irq)
+{
+ writel(1, MSM_CSR_BASE + 0x400 + (irq * 4));
+}
+#endif /* CONFIG_ARCH_MSM7X30 */
+
+
#endif
--
1.6.2.3
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH 4/7] arm: msm: smd: msm7x30 a2m clean up
2010-03-26 23:55 [PATCH 4/7] arm: msm: smd: msm7x30 a2m clean up Daniel Walker
@ 2010-03-27 6:19 ` Pavel Machek
0 siblings, 0 replies; 2+ messages in thread
From: Pavel Machek @ 2010-03-27 6:19 UTC (permalink / raw)
To: Daniel Walker; +Cc: linux-arm-msm
On Fri 2010-03-26 16:55:22, Daniel Walker wrote:
> 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>
ACK.
> ---
> arch/arm/mach-msm/smd.c | 12 ------------
> arch/arm/mach-msm/smd_private.h | 16 ++++++++++++++++
> 2 files changed, 16 insertions(+), 12 deletions(-)
>
> diff --git a/arch/arm/mach-msm/smd.c b/arch/arm/mach-msm/smd.c
> index 2e32d9a..2a9b85c 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);
> diff --git a/arch/arm/mach-msm/smd_private.h b/arch/arm/mach-msm/smd_private.h
> index a403424..54a6007 100644
> --- a/arch/arm/mach-msm/smd_private.h
> +++ b/arch/arm/mach-msm/smd_private.h
> @@ -19,6 +19,9 @@
> #include <linux/platform_device.h>
> #include <linux/spinlock.h>
> #include <linux/list.h>
> +#include <linux/io.h>
> +
> +#include <mach/msm_iomap.h>
>
> struct smem_heap_info {
> unsigned initialized;
> @@ -384,4 +387,17 @@ static inline int _smd_alloc_channel(struct smd_channel *ch)
> }
> #endif /* CONFIG_ARCH_MSM7X00A */
>
> +#if defined(CONFIG_ARCH_MSM7X30)
> +static inline void msm_a2m_int(uint32_t irq)
> +{
> + writel(1 << irq, MSM_GCC_BASE + 0x8);
> +}
> +#else
> +static inline void msm_a2m_int(uint32_t irq)
> +{
> + writel(1, MSM_CSR_BASE + 0x400 + (irq * 4));
> +}
> +#endif /* CONFIG_ARCH_MSM7X30 */
> +
> +
> #endif
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-03-27 6:20 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-26 23:55 [PATCH 4/7] arm: msm: smd: msm7x30 a2m clean up Daniel Walker
2010-03-27 6:19 ` Pavel Machek
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.