All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: qcom: Update SoC compatibles we support
@ 2014-09-24 18:20 ` Kumar Gala
  0 siblings, 0 replies; 6+ messages in thread
From: Kumar Gala @ 2014-09-24 18:20 UTC (permalink / raw)
  To: linux-arm-msm; +Cc: Kumar Gala, linux-arm-kernel, linux-kernel

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(-)

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
 };
 
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation

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

* [PATCH] ARM: qcom: Update SoC compatibles we support
@ 2014-09-24 18:20 ` Kumar Gala
  0 siblings, 0 replies; 6+ messages in thread
From: Kumar Gala @ 2014-09-24 18:20 UTC (permalink / raw)
  To: linux-arm-kernel

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(-)

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
 };
 
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation

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

* Re: [PATCH] ARM: qcom: Update SoC compatibles we support
  2014-09-24 18:20 ` Kumar Gala
@ 2014-09-24 18:34   ` Stephen Boyd
  -1 siblings, 0 replies; 6+ messages in thread
From: Stephen Boyd @ 2014-09-24 18:34 UTC (permalink / raw)
  To: Kumar Gala, linux-arm-msm; +Cc: linux-arm-kernel, linux-kernel

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.

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

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

* [PATCH] ARM: qcom: Update SoC compatibles we support
@ 2014-09-24 18:34   ` Stephen Boyd
  0 siblings, 0 replies; 6+ messages in thread
From: Stephen Boyd @ 2014-09-24 18:34 UTC (permalink / raw)
  To: linux-arm-kernel

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.

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

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

* Re: [PATCH] ARM: qcom: Update SoC compatibles we support
  2014-09-24 18:34   ` Stephen Boyd
@ 2014-09-24 19:26     ` Kumar Gala
  -1 siblings, 0 replies; 6+ messages in thread
From: Kumar Gala @ 2014-09-24 19:26 UTC (permalink / raw)
  To: Stephen Boyd; +Cc: linux-arm-msm, linux-arm-kernel, linux-kernel


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

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

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

* [PATCH] ARM: qcom: Update SoC compatibles we support
@ 2014-09-24 19:26     ` Kumar Gala
  0 siblings, 0 replies; 6+ messages in thread
From: Kumar Gala @ 2014-09-24 19:26 UTC (permalink / raw)
  To: linux-arm-kernel


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

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

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

end of thread, other threads:[~2014-09-24 19:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-24 18:20 [PATCH] ARM: qcom: Update SoC compatibles we support Kumar Gala
2014-09-24 18:20 ` Kumar Gala
2014-09-24 18:34 ` Stephen Boyd
2014-09-24 18:34   ` Stephen Boyd
2014-09-24 19:26   ` Kumar Gala
2014-09-24 19:26     ` Kumar Gala

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.