diff mbox

ARM: qcom: Update SoC compatibles we support

Message ID 1411582838-24159-1-git-send-email-galak@codeaurora.org (mailing list archive)
State New, archived
Headers show

Commit Message

Kumar Gala Sept. 24, 2014, 6:20 p.m. UTC
Move to just using the SoC name in the compatible list so we don't need
to update this for every board going forward.  Also added "qcom,msm8974"
to the list as we support "qcom,apq8074" already (the modemless version
of "qcom,msm8974").

Signed-off-by: Kumar Gala <galak@codeaurora.org>
---
 arch/arm/mach-qcom/board.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

Comments

Stephen Boyd Sept. 24, 2014, 6:34 p.m. UTC | #1
On 09/24/14 11:20, Kumar Gala wrote:
> Move to just using the SoC name in the compatible list so we don't need
> to update this for every board going forward.  Also added "qcom,msm8974"
> to the list as we support "qcom,apq8074" already (the modemless version
> of "qcom,msm8974").
>
> Signed-off-by: Kumar Gala <galak@codeaurora.org>
> ---

Or just remove the file entirely. Things work without having to add
anything here anyway.
Kumar Gala Sept. 24, 2014, 7:26 p.m. UTC | #2
On Sep 24, 2014, at 1:34 PM, Stephen Boyd <sboyd@codeaurora.org> wrote:

> On 09/24/14 11:20, Kumar Gala wrote:
>> Move to just using the SoC name in the compatible list so we don't need
>> to update this for every board going forward.  Also added "qcom,msm8974"
>> to the list as we support "qcom,apq8074" already (the modemless version
>> of "qcom,msm8974").
>> 
>> Signed-off-by: Kumar Gala <galak@codeaurora.org>
>> ---
> 
> Or just remove the file entirely. Things work without having to add
> anything here anyway.

I’d prefer there to be some filter, but maybe you are right.  I doubt we’ll add too many other platforms to this going forward.

- k
diff mbox

Patch

diff --git a/arch/arm/mach-qcom/board.c b/arch/arm/mach-qcom/board.c
index 6d8bbf7..e3e44aa 100644
--- a/arch/arm/mach-qcom/board.c
+++ b/arch/arm/mach-qcom/board.c
@@ -16,12 +16,13 @@ 
 
 static const char * const qcom_dt_match[] __initconst = {
 	"qcom,apq8064",
-	"qcom,apq8074-dragonboard",
+	"qcom,apq8074",
 	"qcom,apq8084",
 	"qcom,ipq8062",
 	"qcom,ipq8064",
-	"qcom,msm8660-surf",
-	"qcom,msm8960-cdp",
+	"qcom,msm8660",
+	"qcom,msm8960",
+	"qcom,msm8974",
 	NULL
 };