From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arnd Bergmann Subject: Re: [PATCH 2/4] arm: qcom: Split Qualcomm support into legacy and multiplatform Date: Fri, 31 Jan 2014 20:20:16 +0100 Message-ID: <201401312020.16984.arnd@arndb.de> References: <1391107002-21470-1-git-send-email-galak@codeaurora.org> <1391107002-21470-3-git-send-email-galak@codeaurora.org> Mime-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Return-path: Received: from moutng.kundenserver.de ([212.227.126.186]:60104 "EHLO moutng.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932236AbaAaTUW (ORCPT ); Fri, 31 Jan 2014 14:20:22 -0500 In-Reply-To: <1391107002-21470-3-git-send-email-galak@codeaurora.org> Sender: linux-arm-msm-owner@vger.kernel.org List-Id: linux-arm-msm@vger.kernel.org To: linux-arm-kernel@lists.infradead.org Cc: Kumar Gala , linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org On Thursday 30 January 2014, Kumar Gala wrote: > Introduce a new mach-qcom that will support SoCs that intend to be > multiplatform compatiable 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 > --- > MAINTAINERS | 7 +++ > arch/arm/Kconfig | 7 +-- > arch/arm/Makefile | 1 + > arch/arm/boot/dts/Makefile | 6 +-- > arch/arm/mach-msm/Kconfig | 45 +------------------ > arch/arm/mach-msm/Makefile | 7 --- > arch/arm/mach-msm/hotplug.c | 51 ---------------------- > arch/arm/mach-qcom/Kconfig | 34 +++++++++++++++ > arch/arm/mach-qcom/Makefile | 5 +++ > .../arm/{mach-msm/board-dt.c => mach-qcom/board.c} | 9 ++-- > arch/arm/{mach-msm => mach-qcom}/scm-boot.c | 0 > arch/arm/{mach-msm => mach-qcom}/scm-boot.h | 0 > arch/arm/{mach-msm => mach-qcom}/scm.c | 0 > arch/arm/{mach-msm => mach-qcom}/scm.h | 0 > arch/arm/{mach-msm/platsmp.c => mach-qcom/smp.c} | 11 ++++- The hotplug.c change sticks out as something that isn't just a move of code to another place, but deletion of unused code. It would be nice to split that out into a separate change, possibly together with the trivial board.c and smp.c changes. Arnd From mboxrd@z Thu Jan 1 00:00:00 1970 From: arnd@arndb.de (Arnd Bergmann) Date: Fri, 31 Jan 2014 20:20:16 +0100 Subject: [PATCH 2/4] arm: qcom: Split Qualcomm support into legacy and multiplatform In-Reply-To: <1391107002-21470-3-git-send-email-galak@codeaurora.org> References: <1391107002-21470-1-git-send-email-galak@codeaurora.org> <1391107002-21470-3-git-send-email-galak@codeaurora.org> Message-ID: <201401312020.16984.arnd@arndb.de> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Thursday 30 January 2014, Kumar Gala wrote: > Introduce a new mach-qcom that will support SoCs that intend to be > multiplatform compatiable 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 > --- > MAINTAINERS | 7 +++ > arch/arm/Kconfig | 7 +-- > arch/arm/Makefile | 1 + > arch/arm/boot/dts/Makefile | 6 +-- > arch/arm/mach-msm/Kconfig | 45 +------------------ > arch/arm/mach-msm/Makefile | 7 --- > arch/arm/mach-msm/hotplug.c | 51 ---------------------- > arch/arm/mach-qcom/Kconfig | 34 +++++++++++++++ > arch/arm/mach-qcom/Makefile | 5 +++ > .../arm/{mach-msm/board-dt.c => mach-qcom/board.c} | 9 ++-- > arch/arm/{mach-msm => mach-qcom}/scm-boot.c | 0 > arch/arm/{mach-msm => mach-qcom}/scm-boot.h | 0 > arch/arm/{mach-msm => mach-qcom}/scm.c | 0 > arch/arm/{mach-msm => mach-qcom}/scm.h | 0 > arch/arm/{mach-msm/platsmp.c => mach-qcom/smp.c} | 11 ++++- The hotplug.c change sticks out as something that isn't just a move of code to another place, but deletion of unused code. It would be nice to split that out into a separate change, possibly together with the trivial board.c and smp.c changes. Arnd