Skip to content

Commit

Permalink
ARM: msm: Allow 8960 and 8660 to compile together
Browse files Browse the repository at this point in the history
Modify the Kconfig to allow the MSM 8660 and MSM 8960 targets to
compile together in the same build. As long as one of these two
targets is selected the choice menu used to select which SoC to
support will be hidden. Deselecting both of these targets will
reintroduce the choice menu, and allow users to select targets
that must be compiled in isolation.

Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: David Brown <davidb@codeaurora.org>
  • Loading branch information
Stephen Boyd authored and David Brown committed Sep 13, 2012
1 parent cb03af0 commit 33fcb13
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions arch/arm/mach-msm/Kconfig
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
if ARCH_MSM

comment "Qualcomm MSM SoC Type"
depends on (ARCH_MSM8X60 || ARCH_MSM8960)

choice
prompt "Qualcomm MSM SoC Type"
default ARCH_MSM7X00A
depends on !(ARCH_MSM8X60 || ARCH_MSM8960)

config ARCH_MSM7X00A
bool "MSM7x00A / MSM7x01A"
Expand Down Expand Up @@ -36,6 +40,8 @@ config ARCH_QSD8X50
select GPIO_MSM_V1
select MSM_PROC_COMM

endchoice

config ARCH_MSM8X60
bool "MSM8X60"
select MACH_MSM8X60_SURF if (!MACH_MSM8X60_RUMI3 && !MACH_MSM8X60_SIM \
Expand All @@ -58,8 +64,6 @@ config ARCH_MSM8960
select MSM_GPIOMUX
select MSM_SCM if SMP

endchoice

config MSM_HAS_DEBUG_UART_HS
bool

Expand Down

0 comments on commit 33fcb13

Please sign in to comment.