All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] msm: Remove unused file core.h
@ 2013-05-29 21:37 Rohit Vaswani
  2013-05-29 21:37 ` [PATCH 2/2] msm: iomap: Remove unused bases and mappings Rohit Vaswani
  2013-06-03 20:53 ` [PATCH 1/2] msm: Remove unused file core.h Rohit Vaswani
  0 siblings, 2 replies; 3+ messages in thread
From: Rohit Vaswani @ 2013-05-29 21:37 UTC (permalink / raw)
  To: David Brown, Daniel Walker, Bryan Huntsman, Russell King
  Cc: Rohit Vaswani, linux-arm-msm, linux-kernel

Commit be2109e13fc6f017040c57615acfe1065723687b removed the usage
of core.h. Remove the file as well.

Signed-off-by: Rohit Vaswani <rvaswani@codeaurora.org>
---
 arch/arm/mach-msm/core.h |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)
 delete mode 100644 arch/arm/mach-msm/core.h

diff --git a/arch/arm/mach-msm/core.h b/arch/arm/mach-msm/core.h
deleted file mode 100644
index a9bab53..0000000
--- a/arch/arm/mach-msm/core.h
+++ /dev/null
@@ -1,2 +0,0 @@
-extern struct smp_operations msm_smp_ops;
-extern void msm_cpu_die(unsigned int cpu);
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/2] msm: iomap: Remove unused bases and mappings
  2013-05-29 21:37 [PATCH 1/2] msm: Remove unused file core.h Rohit Vaswani
@ 2013-05-29 21:37 ` Rohit Vaswani
  2013-06-03 20:53 ` [PATCH 1/2] msm: Remove unused file core.h Rohit Vaswani
  1 sibling, 0 replies; 3+ messages in thread
From: Rohit Vaswani @ 2013-05-29 21:37 UTC (permalink / raw)
  To: David Brown, Daniel Walker, Bryan Huntsman, Russell King
  Cc: Rohit Vaswani, linux-arm-msm, linux-kernel

QGIC_DIST and QGIC_CPU bases are now unused as they are
obtained from device tree. Remove the static iomappings.

Signed-off-by: Rohit Vaswani <rvaswani@codeaurora.org>
---
 arch/arm/mach-msm/include/mach/msm_iomap-8960.h |    7 -------
 arch/arm/mach-msm/include/mach/msm_iomap-8x60.h |    6 ------
 arch/arm/mach-msm/include/mach/msm_iomap.h      |    2 --
 arch/arm/mach-msm/io.c                          |    4 ----
 4 files changed, 0 insertions(+), 19 deletions(-)

diff --git a/arch/arm/mach-msm/include/mach/msm_iomap-8960.h b/arch/arm/mach-msm/include/mach/msm_iomap-8960.h
index 9819a55..7bca8d7 100644
--- a/arch/arm/mach-msm/include/mach/msm_iomap-8960.h
+++ b/arch/arm/mach-msm/include/mach/msm_iomap-8960.h
@@ -32,13 +32,6 @@
  *
  */
 
-
-#define MSM8960_QGIC_DIST_PHYS	0x02000000
-#define MSM8960_QGIC_DIST_SIZE	SZ_4K
-
-#define MSM8960_QGIC_CPU_PHYS	0x02002000
-#define MSM8960_QGIC_CPU_SIZE	SZ_4K
-
 #define MSM8960_TMR_PHYS	0x0200A000
 #define MSM8960_TMR_SIZE	SZ_4K
 
diff --git a/arch/arm/mach-msm/include/mach/msm_iomap-8x60.h b/arch/arm/mach-msm/include/mach/msm_iomap-8x60.h
index 199372e..75a7b62 100644
--- a/arch/arm/mach-msm/include/mach/msm_iomap-8x60.h
+++ b/arch/arm/mach-msm/include/mach/msm_iomap-8x60.h
@@ -35,12 +35,6 @@
  *
  */
 
-#define MSM8X60_QGIC_DIST_PHYS	0x02080000
-#define MSM8X60_QGIC_DIST_SIZE	SZ_4K
-
-#define MSM8X60_QGIC_CPU_PHYS	0x02081000
-#define MSM8X60_QGIC_CPU_SIZE	SZ_4K
-
 #define MSM_TLMM_BASE		IOMEM(0xF0004000)
 #define MSM_TLMM_PHYS		0x00800000
 #define MSM_TLMM_SIZE		SZ_16K
diff --git a/arch/arm/mach-msm/include/mach/msm_iomap.h b/arch/arm/mach-msm/include/mach/msm_iomap.h
index 2ab7cf0..c56e81f 100644
--- a/arch/arm/mach-msm/include/mach/msm_iomap.h
+++ b/arch/arm/mach-msm/include/mach/msm_iomap.h
@@ -62,8 +62,6 @@
 
 /* Virtual addresses shared across all MSM targets. */
 #define MSM_CSR_BASE		IOMEM(0xE0001000)
-#define MSM_QGIC_DIST_BASE	IOMEM(0xF0000000)
-#define MSM_QGIC_CPU_BASE	IOMEM(0xF0001000)
 #define MSM_TMR_BASE		IOMEM(0xF0200000)
 #define MSM_TMR0_BASE		IOMEM(0xF0201000)
 #define MSM_GPIO1_BASE		IOMEM(0xE0003000)
diff --git a/arch/arm/mach-msm/io.c b/arch/arm/mach-msm/io.c
index 123ef9c..efa113e 100644
--- a/arch/arm/mach-msm/io.c
+++ b/arch/arm/mach-msm/io.c
@@ -107,8 +107,6 @@ void __init msm_map_qsd8x50_io(void)
 
 #ifdef CONFIG_ARCH_MSM8X60
 static struct map_desc msm8x60_io_desc[] __initdata = {
-	MSM_CHIP_DEVICE(QGIC_DIST, MSM8X60),
-	MSM_CHIP_DEVICE(QGIC_CPU, MSM8X60),
 	MSM_CHIP_DEVICE(TMR, MSM8X60),
 	MSM_CHIP_DEVICE(TMR0, MSM8X60),
 #ifdef CONFIG_DEBUG_MSM8660_UART
@@ -124,8 +122,6 @@ void __init msm_map_msm8x60_io(void)
 
 #ifdef CONFIG_ARCH_MSM8960
 static struct map_desc msm8960_io_desc[] __initdata = {
-	MSM_CHIP_DEVICE(QGIC_DIST, MSM8960),
-	MSM_CHIP_DEVICE(QGIC_CPU, MSM8960),
 	MSM_CHIP_DEVICE(TMR, MSM8960),
 	MSM_CHIP_DEVICE(TMR0, MSM8960),
 #ifdef CONFIG_DEBUG_MSM8960_UART
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] msm: Remove unused file core.h
  2013-05-29 21:37 [PATCH 1/2] msm: Remove unused file core.h Rohit Vaswani
  2013-05-29 21:37 ` [PATCH 2/2] msm: iomap: Remove unused bases and mappings Rohit Vaswani
@ 2013-06-03 20:53 ` Rohit Vaswani
  1 sibling, 0 replies; 3+ messages in thread
From: Rohit Vaswani @ 2013-06-03 20:53 UTC (permalink / raw)
  To: Rohit Vaswani
  Cc: David Brown, Daniel Walker, Bryan Huntsman, Russell King,
	linux-arm-msm, linux-kernel

Ping ?

On 5/29/2013 2:37 PM, Rohit Vaswani wrote:
> Commit be2109e13fc6f017040c57615acfe1065723687b removed the usage
> of core.h. Remove the file as well.
>
> Signed-off-by: Rohit Vaswani <rvaswani@codeaurora.org>
> ---
>   arch/arm/mach-msm/core.h |    2 --
>   1 files changed, 0 insertions(+), 2 deletions(-)
>   delete mode 100644 arch/arm/mach-msm/core.h
>
> diff --git a/arch/arm/mach-msm/core.h b/arch/arm/mach-msm/core.h
> deleted file mode 100644
> index a9bab53..0000000
> --- a/arch/arm/mach-msm/core.h
> +++ /dev/null
> @@ -1,2 +0,0 @@
> -extern struct smp_operations msm_smp_ops;
> -extern void msm_cpu_die(unsigned int cpu);


Thanks,
Rohit Vaswani

-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, hosted by The Linux Foundation

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-06-03 20:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-29 21:37 [PATCH 1/2] msm: Remove unused file core.h Rohit Vaswani
2013-05-29 21:37 ` [PATCH 2/2] msm: iomap: Remove unused bases and mappings Rohit Vaswani
2013-06-03 20:53 ` [PATCH 1/2] msm: Remove unused file core.h Rohit Vaswani

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.