LKML Archive mirror
 help / color / mirror / Atom feed
* [PATCH V2 0/2] Drop the IPQ5019 SoC ID
@ 2023-07-12  4:19 Kathiravan T
  2023-07-12  4:19 ` [PATCH V2 1/2] dt-bindings: arm: qcom,ids: drop " Kathiravan T
  2023-07-12  4:19 ` [PATCH V2 2/2] soc: qcom: socinfo: " Kathiravan T
  0 siblings, 2 replies; 7+ messages in thread
From: Kathiravan T @ 2023-07-12  4:19 UTC (permalink / raw
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, linux-arm-msm, linux-kernel,
	devicetree
  Cc: quic_saahtoma, Kathiravan T

Kathiravan T (2):
  dt-bindings: arm: qcom,ids: drop the IPQ5019 SoC ID
  soc: qcom: socinfo: drop the IPQ5019 SoC ID

 drivers/soc/qcom/socinfo.c         | 1 -
 include/dt-bindings/arm/qcom,ids.h | 1 -
 2 files changed, 2 deletions(-)

-- 
2.34.1


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

* [PATCH V2 1/2] dt-bindings: arm: qcom,ids: drop the IPQ5019 SoC ID
  2023-07-12  4:19 [PATCH V2 0/2] Drop the IPQ5019 SoC ID Kathiravan T
@ 2023-07-12  4:19 ` Kathiravan T
  2023-07-14 15:59   ` Rob Herring
  2023-07-12  4:19 ` [PATCH V2 2/2] soc: qcom: socinfo: " Kathiravan T
  1 sibling, 1 reply; 7+ messages in thread
From: Kathiravan T @ 2023-07-12  4:19 UTC (permalink / raw
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, linux-arm-msm, linux-kernel,
	devicetree
  Cc: quic_saahtoma, Kathiravan T

IPQ5019 SoC is never productized. So lets drop it.

Signed-off-by: Kathiravan T <quic_kathirav@quicinc.com>
---
Changes in V2:
	- Updated the commit message with the precise information for
	  dropping this ID

 include/dt-bindings/arm/qcom,ids.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/include/dt-bindings/arm/qcom,ids.h b/include/dt-bindings/arm/qcom,ids.h
index bcbe9ee2cdaf..179dd56b2d95 100644
--- a/include/dt-bindings/arm/qcom,ids.h
+++ b/include/dt-bindings/arm/qcom,ids.h
@@ -250,7 +250,6 @@
 #define QCOM_ID_QRU1000			539
 #define QCOM_ID_QDU1000			545
 #define QCOM_ID_QDU1010			587
-#define QCOM_ID_IPQ5019			569
 #define QCOM_ID_QRU1032			588
 #define QCOM_ID_QRU1052			589
 #define QCOM_ID_QRU1062			590
-- 
2.34.1


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

* [PATCH V2 2/2] soc: qcom: socinfo: drop the IPQ5019 SoC ID
  2023-07-12  4:19 [PATCH V2 0/2] Drop the IPQ5019 SoC ID Kathiravan T
  2023-07-12  4:19 ` [PATCH V2 1/2] dt-bindings: arm: qcom,ids: drop " Kathiravan T
@ 2023-07-12  4:19 ` Kathiravan T
  1 sibling, 0 replies; 7+ messages in thread
From: Kathiravan T @ 2023-07-12  4:19 UTC (permalink / raw
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, linux-arm-msm, linux-kernel,
	devicetree
  Cc: quic_saahtoma, Kathiravan T

IPQ5019 SoC is never productized. So lets drop it.

Signed-off-by: Kathiravan T <quic_kathirav@quicinc.com>
---
Changes in V2:
	- Updated the commit message with the precise information for
	  dropping this ID

 drivers/soc/qcom/socinfo.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
index 4d49945b3a35..78293ab13c87 100644
--- a/drivers/soc/qcom/socinfo.c
+++ b/drivers/soc/qcom/socinfo.c
@@ -406,7 +406,6 @@ static const struct soc_id soc_id[] = {
 	{ qcom_board_id(QRU1000) },
 	{ qcom_board_id(QDU1000) },
 	{ qcom_board_id(QDU1010) },
-	{ qcom_board_id(IPQ5019) },
 	{ qcom_board_id(QRU1032) },
 	{ qcom_board_id(QRU1052) },
 	{ qcom_board_id(QRU1062) },
-- 
2.34.1


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

* Re: [PATCH V2 1/2] dt-bindings: arm: qcom,ids: drop the IPQ5019 SoC ID
  2023-07-12  4:19 ` [PATCH V2 1/2] dt-bindings: arm: qcom,ids: drop " Kathiravan T
@ 2023-07-14 15:59   ` Rob Herring
  2023-07-15 15:11     ` Kathiravan T
  0 siblings, 1 reply; 7+ messages in thread
From: Rob Herring @ 2023-07-14 15:59 UTC (permalink / raw
  To: Kathiravan T
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Krzysztof Kozlowski,
	Conor Dooley, linux-arm-msm, linux-kernel, devicetree,
	quic_saahtoma

On Wed, Jul 12, 2023 at 09:49:11AM +0530, Kathiravan T wrote:
> IPQ5019 SoC is never productized. So lets drop it.

You need to remove the user before removing the definition.

> 
> Signed-off-by: Kathiravan T <quic_kathirav@quicinc.com>
> ---
> Changes in V2:
> 	- Updated the commit message with the precise information for
> 	  dropping this ID
> 
>  include/dt-bindings/arm/qcom,ids.h | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/include/dt-bindings/arm/qcom,ids.h b/include/dt-bindings/arm/qcom,ids.h
> index bcbe9ee2cdaf..179dd56b2d95 100644
> --- a/include/dt-bindings/arm/qcom,ids.h
> +++ b/include/dt-bindings/arm/qcom,ids.h
> @@ -250,7 +250,6 @@
>  #define QCOM_ID_QRU1000			539
>  #define QCOM_ID_QDU1000			545
>  #define QCOM_ID_QDU1010			587
> -#define QCOM_ID_IPQ5019			569
>  #define QCOM_ID_QRU1032			588
>  #define QCOM_ID_QRU1052			589
>  #define QCOM_ID_QRU1062			590
> -- 
> 2.34.1
> 

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

* Re: [PATCH V2 1/2] dt-bindings: arm: qcom,ids: drop the IPQ5019 SoC ID
  2023-07-14 15:59   ` Rob Herring
@ 2023-07-15 15:11     ` Kathiravan T
  2023-07-22  4:02       ` Bjorn Andersson
  0 siblings, 1 reply; 7+ messages in thread
From: Kathiravan T @ 2023-07-15 15:11 UTC (permalink / raw
  To: Rob Herring
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Krzysztof Kozlowski,
	Conor Dooley, linux-arm-msm, linux-kernel, devicetree,
	quic_saahtoma


On 7/14/2023 9:29 PM, Rob Herring wrote:
> On Wed, Jul 12, 2023 at 09:49:11AM +0530, Kathiravan T wrote:
>> IPQ5019 SoC is never productized. So lets drop it.
> You need to remove the user before removing the definition.


Rob, Currently there are no users for this macro.


>
>> Signed-off-by: Kathiravan T <quic_kathirav@quicinc.com>
>> ---
>> Changes in V2:
>> 	- Updated the commit message with the precise information for
>> 	  dropping this ID
>>
>>   include/dt-bindings/arm/qcom,ids.h | 1 -
>>   1 file changed, 1 deletion(-)
>>
>> diff --git a/include/dt-bindings/arm/qcom,ids.h b/include/dt-bindings/arm/qcom,ids.h
>> index bcbe9ee2cdaf..179dd56b2d95 100644
>> --- a/include/dt-bindings/arm/qcom,ids.h
>> +++ b/include/dt-bindings/arm/qcom,ids.h
>> @@ -250,7 +250,6 @@
>>   #define QCOM_ID_QRU1000			539
>>   #define QCOM_ID_QDU1000			545
>>   #define QCOM_ID_QDU1010			587
>> -#define QCOM_ID_IPQ5019			569
>>   #define QCOM_ID_QRU1032			588
>>   #define QCOM_ID_QRU1052			589
>>   #define QCOM_ID_QRU1062			590
>> -- 
>> 2.34.1
>>

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

* Re: [PATCH V2 1/2] dt-bindings: arm: qcom,ids: drop the IPQ5019 SoC ID
  2023-07-15 15:11     ` Kathiravan T
@ 2023-07-22  4:02       ` Bjorn Andersson
  2023-07-23 13:33         ` Kathiravan T
  0 siblings, 1 reply; 7+ messages in thread
From: Bjorn Andersson @ 2023-07-22  4:02 UTC (permalink / raw
  To: Kathiravan T
  Cc: Rob Herring, Andy Gross, Konrad Dybcio, Krzysztof Kozlowski,
	Conor Dooley, linux-arm-msm, linux-kernel, devicetree,
	quic_saahtoma

On Sat, Jul 15, 2023 at 08:41:56PM +0530, Kathiravan T wrote:
> 
> On 7/14/2023 9:29 PM, Rob Herring wrote:
> > On Wed, Jul 12, 2023 at 09:49:11AM +0530, Kathiravan T wrote:
> > > IPQ5019 SoC is never productized. So lets drop it.
> > You need to remove the user before removing the definition.
> 
> Rob, Currently there are no users for this macro.
> 

But you're removing a user in patch 2? Or am I reading that incorrectly?

Regards,
Bjorn

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

* Re: [PATCH V2 1/2] dt-bindings: arm: qcom,ids: drop the IPQ5019 SoC ID
  2023-07-22  4:02       ` Bjorn Andersson
@ 2023-07-23 13:33         ` Kathiravan T
  0 siblings, 0 replies; 7+ messages in thread
From: Kathiravan T @ 2023-07-23 13:33 UTC (permalink / raw
  To: Bjorn Andersson
  Cc: Rob Herring, Andy Gross, Konrad Dybcio, Krzysztof Kozlowski,
	Conor Dooley, linux-arm-msm, linux-kernel, devicetree,
	quic_saahtoma


On 7/22/2023 9:32 AM, Bjorn Andersson wrote:
> On Sat, Jul 15, 2023 at 08:41:56PM +0530, Kathiravan T wrote:
>> On 7/14/2023 9:29 PM, Rob Herring wrote:
>>> On Wed, Jul 12, 2023 at 09:49:11AM +0530, Kathiravan T wrote:
>>>> IPQ5019 SoC is never productized. So lets drop it.
>>> You need to remove the user before removing the definition.
>> Rob, Currently there are no users for this macro.
>>
> But you're removing a user in patch 2? Or am I reading that incorrectly?


My bad. Sorry, I misunderstood the Rob's statement. Let me send the V3 
in the correct order.


>
> Regards,
> Bjorn

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

end of thread, other threads:[~2023-07-23 13:33 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-12  4:19 [PATCH V2 0/2] Drop the IPQ5019 SoC ID Kathiravan T
2023-07-12  4:19 ` [PATCH V2 1/2] dt-bindings: arm: qcom,ids: drop " Kathiravan T
2023-07-14 15:59   ` Rob Herring
2023-07-15 15:11     ` Kathiravan T
2023-07-22  4:02       ` Bjorn Andersson
2023-07-23 13:33         ` Kathiravan T
2023-07-12  4:19 ` [PATCH V2 2/2] soc: qcom: socinfo: " Kathiravan T

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).