diff options
| author | Kumar Gala <galak@codeaurora.org> | 2014-01-21 18:14:10 -0500 |
|---|---|---|
| committer | Kumar Gala <galak@codeaurora.org> | 2014-02-06 17:20:26 -0500 |
| commit | 8fc1b0f87d9fcc7f05873c70b3003328c3d7defa (patch) | |
| tree | 7f5007bea484e69a9d9776336062933f9a61b964 | |
| parent | 3f8e8cee2f4bd02367583cc2d143887d1f49fd6c (diff) | |
ARM: qcom: Split Qualcomm support into legacy and multiplatform
Introduce a new mach-qcom that will support SoCs that intend to be
multiplatform compatible while keeping mach-msm to legacy SoC/board
support that will not transition over to multiplatform.
As part of this, we move support for MSM8X60, MSM8960 and MSM8974 over
to mach-qcom.
Signed-off-by: Kumar Gala <galak@codeaurora.org>
| -rw-r--r-- | MAINTAINERS | 8 | ||||
| -rw-r--r-- | arch/arm/Kconfig | 7 | ||||
| -rw-r--r-- | arch/arm/Kconfig.debug | 2 | ||||
| -rw-r--r-- | arch/arm/Makefile | 1 | ||||
| -rw-r--r-- | arch/arm/boot/dts/Makefile | 6 | ||||
| -rw-r--r-- | arch/arm/mach-msm/Kconfig | 45 | ||||
| -rw-r--r-- | arch/arm/mach-msm/Makefile | 6 | ||||
| -rw-r--r-- | arch/arm/mach-qcom/Kconfig | 33 | ||||
| -rw-r--r-- | arch/arm/mach-qcom/Makefile | 5 | ||||
| -rw-r--r-- | arch/arm/mach-qcom/board.c (renamed from arch/arm/mach-msm/board-dt.c) | 13 | ||||
| -rw-r--r-- | arch/arm/mach-qcom/platsmp.c (renamed from arch/arm/mach-msm/platsmp.c) | 2 | ||||
| -rw-r--r-- | arch/arm/mach-qcom/scm-boot.c (renamed from arch/arm/mach-msm/scm-boot.c) | 0 | ||||
| -rw-r--r-- | arch/arm/mach-qcom/scm-boot.h (renamed from arch/arm/mach-msm/scm-boot.h) | 0 | ||||
| -rw-r--r-- | arch/arm/mach-qcom/scm.c (renamed from arch/arm/mach-msm/scm.c) | 0 | ||||
| -rw-r--r-- | arch/arm/mach-qcom/scm.h (renamed from arch/arm/mach-msm/scm.h) | 0 |
15 files changed, 64 insertions, 64 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index b2cf5cfb4d29..402be6009e26 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
| @@ -1167,6 +1167,14 @@ L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |||
| 1167 | W: http://www.arm.linux.org.uk/ | 1167 | W: http://www.arm.linux.org.uk/ |
| 1168 | S: Maintained | 1168 | S: Maintained |
| 1169 | 1169 | ||
| 1170 | ARM/QUALCOMM SUPPORT | ||
| 1171 | M: Kumar Gala <galak@codeaurora.org> | ||
| 1172 | M: David Brown <davidb@codeaurora.org> | ||
| 1173 | L: linux-arm-msm@vger.kernel.org | ||
| 1174 | S: Maintained | ||
| 1175 | F: arch/arm/mach-qcom/ | ||
| 1176 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git | ||
| 1177 | |||
| 1170 | ARM/RADISYS ENP2611 MACHINE SUPPORT | 1178 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
| 1171 | M: Lennert Buytenhek <kernel@wantstofly.org> | 1179 | M: Lennert Buytenhek <kernel@wantstofly.org> |
| 1172 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | 1180 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index e25419817791..f093f2030c1c 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
| @@ -657,9 +657,8 @@ config ARCH_PXA | |||
| 657 | help | 657 | help |
| 658 | Support for Intel/Marvell's PXA2xx/PXA3xx processor line. | 658 | Support for Intel/Marvell's PXA2xx/PXA3xx processor line. |
| 659 | 659 | ||
| 660 | config ARCH_MSM_NODT | 660 | config ARCH_MSM |
| 661 | bool "Qualcomm MSM" | 661 | bool "Qualcomm MSM (non-multiplatform)" |
| 662 | select ARCH_MSM | ||
| 663 | select ARCH_REQUIRE_GPIOLIB | 662 | select ARCH_REQUIRE_GPIOLIB |
| 664 | select COMMON_CLK | 663 | select COMMON_CLK |
| 665 | select GENERIC_CLOCKEVENTS | 664 | select GENERIC_CLOCKEVENTS |
| @@ -1005,6 +1004,8 @@ source "arch/arm/plat-pxa/Kconfig" | |||
| 1005 | 1004 | ||
| 1006 | source "arch/arm/mach-mmp/Kconfig" | 1005 | source "arch/arm/mach-mmp/Kconfig" |
| 1007 | 1006 | ||
| 1007 | source "arch/arm/mach-qcom/Kconfig" | ||
| 1008 | |||
| 1008 | source "arch/arm/mach-realview/Kconfig" | 1009 | source "arch/arm/mach-realview/Kconfig" |
| 1009 | 1010 | ||
| 1010 | source "arch/arm/mach-rockchip/Kconfig" | 1011 | source "arch/arm/mach-rockchip/Kconfig" |
diff --git a/arch/arm/Kconfig.debug b/arch/arm/Kconfig.debug index 0531da8e5216..4491c7b05275 100644 --- a/arch/arm/Kconfig.debug +++ b/arch/arm/Kconfig.debug | |||
| @@ -956,7 +956,7 @@ config DEBUG_STI_UART | |||
| 956 | 956 | ||
| 957 | config DEBUG_MSM_UART | 957 | config DEBUG_MSM_UART |
| 958 | bool | 958 | bool |
| 959 | depends on ARCH_MSM | 959 | depends on ARCH_MSM || ARCH_QCOM |
| 960 | 960 | ||
| 961 | config DEBUG_LL_INCLUDE | 961 | config DEBUG_LL_INCLUDE |
| 962 | string | 962 | string |
diff --git a/arch/arm/Makefile b/arch/arm/Makefile index 08a9ef58d9c3..51e5bede657f 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile | |||
| @@ -180,6 +180,7 @@ machine-$(CONFIG_ARCH_OMAP2PLUS) += omap2 | |||
| 180 | machine-$(CONFIG_ARCH_ORION5X) += orion5x | 180 | machine-$(CONFIG_ARCH_ORION5X) += orion5x |
| 181 | machine-$(CONFIG_ARCH_PICOXCELL) += picoxcell | 181 | machine-$(CONFIG_ARCH_PICOXCELL) += picoxcell |
| 182 | machine-$(CONFIG_ARCH_PXA) += pxa | 182 | machine-$(CONFIG_ARCH_PXA) += pxa |
| 183 | machine-$(CONFIG_ARCH_QCOM) += qcom | ||
| 183 | machine-$(CONFIG_ARCH_REALVIEW) += realview | 184 | machine-$(CONFIG_ARCH_REALVIEW) += realview |
| 184 | machine-$(CONFIG_ARCH_ROCKCHIP) += rockchip | 185 | machine-$(CONFIG_ARCH_ROCKCHIP) += rockchip |
| 185 | machine-$(CONFIG_ARCH_RPC) += rpc | 186 | machine-$(CONFIG_ARCH_RPC) += rpc |
diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile index b9d6a8b485e0..c9eaf1f87041 100644 --- a/arch/arm/boot/dts/Makefile +++ b/arch/arm/boot/dts/Makefile | |||
| @@ -118,9 +118,6 @@ dtb-$(CONFIG_ARCH_KIRKWOOD) += kirkwood-cloudbox.dtb \ | |||
| 118 | kirkwood-ts219-6282.dtb | 118 | kirkwood-ts219-6282.dtb |
| 119 | dtb-$(CONFIG_ARCH_MARCO) += marco-evb.dtb | 119 | dtb-$(CONFIG_ARCH_MARCO) += marco-evb.dtb |
| 120 | dtb-$(CONFIG_ARCH_MOXART) += moxart-uc7112lx.dtb | 120 | dtb-$(CONFIG_ARCH_MOXART) += moxart-uc7112lx.dtb |
| 121 | dtb-$(CONFIG_ARCH_MSM) += qcom-msm8660-surf.dtb \ | ||
| 122 | qcom-msm8960-cdp.dtb \ | ||
| 123 | qcom-apq8074-dragonboard.dtb | ||
| 124 | dtb-$(CONFIG_ARCH_MVEBU) += armada-370-db.dtb \ | 121 | dtb-$(CONFIG_ARCH_MVEBU) += armada-370-db.dtb \ |
| 125 | armada-370-mirabox.dtb \ | 122 | armada-370-mirabox.dtb \ |
| 126 | armada-370-netgear-rn102.dtb \ | 123 | armada-370-netgear-rn102.dtb \ |
| @@ -232,6 +229,9 @@ dtb-$(CONFIG_ARCH_OMAP2PLUS) += omap2420-h4.dtb \ | |||
| 232 | dra7-evm.dtb | 229 | dra7-evm.dtb |
| 233 | dtb-$(CONFIG_ARCH_ORION5X) += orion5x-lacie-ethernet-disk-mini-v2.dtb | 230 | dtb-$(CONFIG_ARCH_ORION5X) += orion5x-lacie-ethernet-disk-mini-v2.dtb |
| 234 | dtb-$(CONFIG_ARCH_PRIMA2) += prima2-evb.dtb | 231 | dtb-$(CONFIG_ARCH_PRIMA2) += prima2-evb.dtb |
| 232 | dtb-$(CONFIG_ARCH_QCOM) += qcom-msm8660-surf.dtb \ | ||
| 233 | qcom-msm8960-cdp.dtb \ | ||
| 234 | qcom-apq8074-dragonboard.dtb | ||
| 235 | dtb-$(CONFIG_ARCH_U8500) += ste-snowball.dtb \ | 235 | dtb-$(CONFIG_ARCH_U8500) += ste-snowball.dtb \ |
| 236 | ste-hrefprev60-stuib.dtb \ | 236 | ste-hrefprev60-stuib.dtb \ |
| 237 | ste-hrefprev60-tvk.dtb \ | 237 | ste-hrefprev60-tvk.dtb \ |
diff --git a/arch/arm/mach-msm/Kconfig b/arch/arm/mach-msm/Kconfig index 3c4eca71f976..a7f959e58c3d 100644 --- a/arch/arm/mach-msm/Kconfig +++ b/arch/arm/mach-msm/Kconfig | |||
| @@ -1,50 +1,9 @@ | |||
| 1 | config ARCH_MSM | ||
| 2 | bool | ||
| 3 | |||
| 4 | config ARCH_MSM_DT | ||
| 5 | bool "Qualcomm MSM DT Support" if ARCH_MULTI_V7 | ||
| 6 | select ARCH_MSM | ||
| 7 | select ARCH_REQUIRE_GPIOLIB | ||
| 8 | select CLKSRC_OF | ||
| 9 | select GENERIC_CLOCKEVENTS | ||
| 10 | help | ||
| 11 | Support for Qualcomm's devicetree based MSM systems. | ||
| 12 | |||
| 13 | if ARCH_MSM | 1 | if ARCH_MSM |
| 14 | 2 | ||
| 15 | menu "Qualcomm MSM SoC Selection" | ||
| 16 | depends on ARCH_MSM_DT | ||
| 17 | |||
| 18 | config ARCH_MSM8X60 | ||
| 19 | bool "Enable support for MSM8X60" | ||
| 20 | select ARM_GIC | ||
| 21 | select CPU_V7 | ||
| 22 | select HAVE_SMP | ||
| 23 | select MSM_SCM if SMP | ||
| 24 | select CLKSRC_QCOM | ||
| 25 | |||
| 26 | config ARCH_MSM8960 | ||
| 27 | bool "Enable support for MSM8960" | ||
| 28 | select ARM_GIC | ||
| 29 | select CPU_V7 | ||
| 30 | select HAVE_SMP | ||
| 31 | select MSM_SCM if SMP | ||
| 32 | select CLKSRC_QCOM | ||
| 33 | |||
| 34 | config ARCH_MSM8974 | ||
| 35 | bool "Enable support for MSM8974" | ||
| 36 | select ARM_GIC | ||
| 37 | select CPU_V7 | ||
| 38 | select HAVE_ARM_ARCH_TIMER | ||
| 39 | select HAVE_SMP | ||
| 40 | select MSM_SCM if SMP | ||
| 41 | |||
| 42 | endmenu | ||
| 43 | |||
| 44 | choice | 3 | choice |
| 45 | prompt "Qualcomm MSM SoC Type" | 4 | prompt "Qualcomm MSM SoC Type" |
| 46 | default ARCH_MSM7X00A | 5 | default ARCH_MSM7X00A |
| 47 | depends on ARCH_MSM_NODT | 6 | depends on ARCH_MSM |
| 48 | 7 | ||
| 49 | config ARCH_MSM7X00A | 8 | config ARCH_MSM7X00A |
| 50 | bool "MSM7x00A / MSM7x01A" | 9 | bool "MSM7x00A / MSM7x01A" |
| @@ -99,7 +58,7 @@ config MSM_VIC | |||
| 99 | bool | 58 | bool |
| 100 | 59 | ||
| 101 | menu "Qualcomm MSM Board Type" | 60 | menu "Qualcomm MSM Board Type" |
| 102 | depends on ARCH_MSM_NODT | 61 | depends on ARCH_MSM |
| 103 | 62 | ||
| 104 | config MACH_HALIBUT | 63 | config MACH_HALIBUT |
| 105 | depends on ARCH_MSM | 64 | depends on ARCH_MSM |
diff --git a/arch/arm/mach-msm/Makefile b/arch/arm/mach-msm/Makefile index 04b1bee941f5..27c078a568df 100644 --- a/arch/arm/mach-msm/Makefile +++ b/arch/arm/mach-msm/Makefile | |||
| @@ -13,17 +13,11 @@ obj-$(CONFIG_ARCH_QSD8X50) += dma.o io.o | |||
| 13 | 13 | ||
| 14 | obj-$(CONFIG_MSM_SMD) += smd.o smd_debug.o | 14 | obj-$(CONFIG_MSM_SMD) += smd.o smd_debug.o |
| 15 | obj-$(CONFIG_MSM_SMD) += last_radio_log.o | 15 | obj-$(CONFIG_MSM_SMD) += last_radio_log.o |
| 16 | obj-$(CONFIG_MSM_SCM) += scm.o scm-boot.o | ||
| 17 | |||
| 18 | CFLAGS_scm.o :=$(call as-instr,.arch_extension sec,-DREQUIRES_SEC=1) | ||
| 19 | |||
| 20 | obj-$(CONFIG_SMP) += platsmp.o | ||
| 21 | 16 | ||
| 22 | obj-$(CONFIG_MACH_TROUT) += board-trout.o board-trout-gpio.o board-trout-mmc.o devices-msm7x00.o | 17 | obj-$(CONFIG_MACH_TROUT) += board-trout.o board-trout-gpio.o board-trout-mmc.o devices-msm7x00.o |
| 23 | obj-$(CONFIG_MACH_TROUT) += board-trout.o board-trout-gpio.o board-trout-mmc.o board-trout-panel.o devices-msm7x00.o | 18 | obj-$(CONFIG_MACH_TROUT) += board-trout.o board-trout-gpio.o board-trout-mmc.o board-trout-panel.o devices-msm7x00.o |
| 24 | obj-$(CONFIG_MACH_HALIBUT) += board-halibut.o devices-msm7x00.o | 19 | obj-$(CONFIG_MACH_HALIBUT) += board-halibut.o devices-msm7x00.o |
| 25 | obj-$(CONFIG_ARCH_MSM7X30) += board-msm7x30.o devices-msm7x30.o | 20 | obj-$(CONFIG_ARCH_MSM7X30) += board-msm7x30.o devices-msm7x30.o |
| 26 | obj-$(CONFIG_ARCH_QSD8X50) += board-qsd8x50.o devices-qsd8x50.o | 21 | obj-$(CONFIG_ARCH_QSD8X50) += board-qsd8x50.o devices-qsd8x50.o |
| 27 | obj-$(CONFIG_ARCH_MSM_DT) += board-dt.o | ||
| 28 | obj-$(CONFIG_MSM_GPIOMUX) += gpiomux.o | 22 | obj-$(CONFIG_MSM_GPIOMUX) += gpiomux.o |
| 29 | obj-$(CONFIG_ARCH_QSD8X50) += gpiomux-8x50.o | 23 | obj-$(CONFIG_ARCH_QSD8X50) += gpiomux-8x50.o |
diff --git a/arch/arm/mach-qcom/Kconfig b/arch/arm/mach-qcom/Kconfig new file mode 100644 index 000000000000..a028be234334 --- /dev/null +++ b/arch/arm/mach-qcom/Kconfig | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | config ARCH_QCOM | ||
| 2 | bool "Qualcomm Support" if ARCH_MULTI_V7 | ||
| 3 | select ARCH_REQUIRE_GPIOLIB | ||
| 4 | select ARM_GIC | ||
| 5 | select CLKSRC_OF | ||
| 6 | select GENERIC_CLOCKEVENTS | ||
| 7 | select HAVE_SMP | ||
| 8 | select QCOM_SCM if SMP | ||
| 9 | help | ||
| 10 | Support for Qualcomm's devicetree based systems. | ||
| 11 | |||
| 12 | if ARCH_QCOM | ||
| 13 | |||
| 14 | menu "Qualcomm SoC Selection" | ||
| 15 | |||
| 16 | config ARCH_MSM8X60 | ||
| 17 | bool "Enable support for MSM8X60" | ||
| 18 | select CLKSRC_QCOM | ||
| 19 | |||
| 20 | config ARCH_MSM8960 | ||
| 21 | bool "Enable support for MSM8960" | ||
| 22 | select CLKSRC_QCOM | ||
| 23 | |||
| 24 | config ARCH_MSM8974 | ||
| 25 | bool "Enable support for MSM8974" | ||
| 26 | select HAVE_ARM_ARCH_TIMER | ||
| 27 | |||
| 28 | endmenu | ||
| 29 | |||
| 30 | config QCOM_SCM | ||
| 31 | bool | ||
| 32 | |||
| 33 | endif | ||
diff --git a/arch/arm/mach-qcom/Makefile b/arch/arm/mach-qcom/Makefile new file mode 100644 index 000000000000..8f756ae1ae31 --- /dev/null +++ b/arch/arm/mach-qcom/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | obj-y := board.o | ||
| 2 | obj-$(CONFIG_SMP) += platsmp.o | ||
| 3 | obj-$(CONFIG_QCOM_SCM) += scm.o scm-boot.o | ||
| 4 | |||
| 5 | CFLAGS_scm.o :=$(call as-instr,.arch_extension sec,-DREQUIRES_SEC=1) | ||
diff --git a/arch/arm/mach-msm/board-dt.c b/arch/arm/mach-qcom/board.c index 1f11d93e700e..4529f6b222d3 100644 --- a/arch/arm/mach-msm/board-dt.c +++ b/arch/arm/mach-qcom/board.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* Copyright (c) 2010-2012,2013 The Linux Foundation. All rights reserved. | 1 | /* Copyright (c) 2010-2014 The Linux Foundation. All rights reserved. |
| 2 | * | 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify | 3 | * This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License version 2 and | 4 | * it under the terms of the GNU General Public License version 2 and |
| @@ -17,10 +17,9 @@ | |||
| 17 | #include <asm/mach/arch.h> | 17 | #include <asm/mach/arch.h> |
| 18 | #include <asm/mach/map.h> | 18 | #include <asm/mach/map.h> |
| 19 | 19 | ||
| 20 | #include "common.h" | 20 | extern struct smp_operations msm_smp_ops; |
| 21 | 21 | ||
| 22 | static const char * const msm_dt_match[] __initconst = { | 22 | static const char * const qcom_dt_match[] __initconst = { |
| 23 | "qcom,msm8660-fluid", | ||
| 24 | "qcom,msm8660-surf", | 23 | "qcom,msm8660-surf", |
| 25 | "qcom,msm8960-cdp", | 24 | "qcom,msm8960-cdp", |
| 26 | NULL | 25 | NULL |
| @@ -31,11 +30,11 @@ static const char * const apq8074_dt_match[] __initconst = { | |||
| 31 | NULL | 30 | NULL |
| 32 | }; | 31 | }; |
| 33 | 32 | ||
| 34 | DT_MACHINE_START(MSM_DT, "Qualcomm MSM (Flattened Device Tree)") | 33 | DT_MACHINE_START(QCOM_DT, "Qualcomm (Flattened Device Tree)") |
| 35 | .smp = smp_ops(msm_smp_ops), | 34 | .smp = smp_ops(msm_smp_ops), |
| 36 | .dt_compat = msm_dt_match, | 35 | .dt_compat = qcom_dt_match, |
| 37 | MACHINE_END | 36 | MACHINE_END |
| 38 | 37 | ||
| 39 | DT_MACHINE_START(APQ_DT, "Qualcomm MSM (Flattened Device Tree)") | 38 | DT_MACHINE_START(APQ_DT, "Qualcomm (Flattened Device Tree)") |
| 40 | .dt_compat = apq8074_dt_match, | 39 | .dt_compat = apq8074_dt_match, |
| 41 | MACHINE_END | 40 | MACHINE_END |
diff --git a/arch/arm/mach-msm/platsmp.c b/arch/arm/mach-qcom/platsmp.c index 251a91eb102a..67823a7bec0d 100644 --- a/arch/arm/mach-msm/platsmp.c +++ b/arch/arm/mach-qcom/platsmp.c | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | * Copyright (C) 2002 ARM Ltd. | 2 | * Copyright (C) 2002 ARM Ltd. |
| 3 | * All Rights Reserved | 3 | * All Rights Reserved |
| 4 | * Copyright (c) 2010, Code Aurora Forum. All rights reserved. | 4 | * Copyright (c) 2010, Code Aurora Forum. All rights reserved. |
| 5 | * Copyright (c) 2014 The Linux Foundation. All rights reserved. | ||
| 5 | * | 6 | * |
| 6 | * This program is free software; you can redistribute it and/or modify | 7 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as | 8 | * it under the terms of the GNU General Public License version 2 as |
| @@ -19,7 +20,6 @@ | |||
| 19 | #include <asm/smp_plat.h> | 20 | #include <asm/smp_plat.h> |
| 20 | 21 | ||
| 21 | #include "scm-boot.h" | 22 | #include "scm-boot.h" |
| 22 | #include "common.h" | ||
| 23 | 23 | ||
| 24 | #define VDD_SC1_ARRAY_CLAMP_GFS_CTL 0x15A0 | 24 | #define VDD_SC1_ARRAY_CLAMP_GFS_CTL 0x15A0 |
| 25 | #define SCSS_CPU1CORE_RESET 0xD80 | 25 | #define SCSS_CPU1CORE_RESET 0xD80 |
diff --git a/arch/arm/mach-msm/scm-boot.c b/arch/arm/mach-qcom/scm-boot.c index 45cee3e469a5..45cee3e469a5 100644 --- a/arch/arm/mach-msm/scm-boot.c +++ b/arch/arm/mach-qcom/scm-boot.c | |||
diff --git a/arch/arm/mach-msm/scm-boot.h b/arch/arm/mach-qcom/scm-boot.h index 7be32ff5d687..7be32ff5d687 100644 --- a/arch/arm/mach-msm/scm-boot.h +++ b/arch/arm/mach-qcom/scm-boot.h | |||
diff --git a/arch/arm/mach-msm/scm.c b/arch/arm/mach-qcom/scm.c index c536fd6bf827..c536fd6bf827 100644 --- a/arch/arm/mach-msm/scm.c +++ b/arch/arm/mach-qcom/scm.c | |||
diff --git a/arch/arm/mach-msm/scm.h b/arch/arm/mach-qcom/scm.h index 00b31ea58f29..00b31ea58f29 100644 --- a/arch/arm/mach-msm/scm.h +++ b/arch/arm/mach-qcom/scm.h | |||
