Devicetree
 help / color / mirror / Atom feed
* [PATCH] arm64: dts: qcom: sm8450: Fix address for usb controller node
@ 2025-08-13  6:38 Krishna Kurapati
  2025-08-13  7:26 ` Krzysztof Kozlowski
  2025-08-13  7:28 ` Neil Armstrong
  0 siblings, 2 replies; 4+ messages in thread
From: Krishna Kurapati @ 2025-08-13  6:38 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley
  Cc: linux-arm-msm, devicetree, linux-kernel, Krishna Kurapati, stable,
	kernel test robot

Correct the address in usb controller node to fix the following warning:

Warning (simple_bus_reg): /soc@0/usb@a6f8800: simple-bus unit address
format error, expected "a600000"

Fixes: c015f76c23ac ("arm64: dts: qcom: sm8450: Fix address for usb controller node")
Cc: stable@vger.kernel.org
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202508121834.953Mvah2-lkp@intel.com/
Signed-off-by: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
---
 arch/arm64/boot/dts/qcom/sm8450.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/sm8450.dtsi b/arch/arm64/boot/dts/qcom/sm8450.dtsi
index 2baef6869ed7..38c91c3ec787 100644
--- a/arch/arm64/boot/dts/qcom/sm8450.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm8450.dtsi
@@ -5417,7 +5417,7 @@ opp-202000000 {
 			};
 		};
 
-		usb_1: usb@a6f8800 {
+		usb_1: usb@a600000 {
 			compatible = "qcom,sm8450-dwc3", "qcom,snps-dwc3";
 			reg = <0 0x0a600000 0 0xfc100>;
 			status = "disabled";
-- 
2.34.1


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

* Re: [PATCH] arm64: dts: qcom: sm8450: Fix address for usb controller node
  2025-08-13  6:38 [PATCH] arm64: dts: qcom: sm8450: Fix address for usb controller node Krishna Kurapati
@ 2025-08-13  7:26 ` Krzysztof Kozlowski
  2025-08-13  8:36   ` Krishna Kurapati
  2025-08-13  7:28 ` Neil Armstrong
  1 sibling, 1 reply; 4+ messages in thread
From: Krzysztof Kozlowski @ 2025-08-13  7:26 UTC (permalink / raw)
  To: Krishna Kurapati, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: linux-arm-msm, devicetree, linux-kernel, stable,
	kernel test robot

On 13/08/2025 08:38, Krishna Kurapati wrote:
> Correct the address in usb controller node to fix the following warning:
> 
> Warning (simple_bus_reg): /soc@0/usb@a6f8800: simple-bus unit address
> format error, expected "a600000"
> 
> Fixes: c015f76c23ac ("arm64: dts: qcom: sm8450: Fix address for usb controller node")

There is no such commit in recent next... And how is that you fix commit
WITH THE SAME title?

> Cc: stable@vger.kernel.org
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202508121834.953Mvah2-lkp@intel.com/
> Signed-off-by: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
> ---
>  arch/arm64/boot/dts/qcom/sm8450.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm64/boot/dts/qcom/sm8450.dtsi b/arch/arm64/boot/dts/qcom/sm8450.dtsi
> index 2baef6869ed7..38c91c3ec787 100644
> --- a/arch/arm64/boot/dts/qcom/sm8450.dtsi
> +++ b/arch/arm64/boot/dts/qcom/sm8450.dtsi
> @@ -5417,7 +5417,7 @@ opp-202000000 {
>  			};
>  		};
>  
> -		usb_1: usb@a6f8800 {
> +		usb_1: usb@a600000 {

There is no such code either...

>  			compatible = "qcom,sm8450-dwc3", "qcom,snps-dwc3";
>  			reg = <0 0x0a600000 0 0xfc100>;
>  			status = "disabled";


Best regards,
Krzysztof

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

* Re: [PATCH] arm64: dts: qcom: sm8450: Fix address for usb controller node
  2025-08-13  6:38 [PATCH] arm64: dts: qcom: sm8450: Fix address for usb controller node Krishna Kurapati
  2025-08-13  7:26 ` Krzysztof Kozlowski
@ 2025-08-13  7:28 ` Neil Armstrong
  1 sibling, 0 replies; 4+ messages in thread
From: Neil Armstrong @ 2025-08-13  7:28 UTC (permalink / raw)
  To: Krishna Kurapati, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: linux-arm-msm, devicetree, linux-kernel, stable,
	kernel test robot

On 13/08/2025 08:38, Krishna Kurapati wrote:
> Correct the address in usb controller node to fix the following warning:
> 
> Warning (simple_bus_reg): /soc@0/usb@a6f8800: simple-bus unit address
> format error, expected "a600000"
> 
> Fixes: c015f76c23ac ("arm64: dts: qcom: sm8450: Fix address for usb controller node")
> Cc: stable@vger.kernel.org
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202508121834.953Mvah2-lkp@intel.com/
> Signed-off-by: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
> ---
>   arch/arm64/boot/dts/qcom/sm8450.dtsi | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm64/boot/dts/qcom/sm8450.dtsi b/arch/arm64/boot/dts/qcom/sm8450.dtsi
> index 2baef6869ed7..38c91c3ec787 100644
> --- a/arch/arm64/boot/dts/qcom/sm8450.dtsi
> +++ b/arch/arm64/boot/dts/qcom/sm8450.dtsi
> @@ -5417,7 +5417,7 @@ opp-202000000 {
>   			};
>   		};
>   
> -		usb_1: usb@a6f8800 {
> +		usb_1: usb@a600000 {
>   			compatible = "qcom,sm8450-dwc3", "qcom,snps-dwc3";
>   			reg = <0 0x0a600000 0 0xfc100>;
>   			status = "disabled";

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>

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

* Re: [PATCH] arm64: dts: qcom: sm8450: Fix address for usb controller node
  2025-08-13  7:26 ` Krzysztof Kozlowski
@ 2025-08-13  8:36   ` Krishna Kurapati
  0 siblings, 0 replies; 4+ messages in thread
From: Krishna Kurapati @ 2025-08-13  8:36 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: linux-arm-msm, Conor Dooley, Krzysztof Kozlowski, Rob Herring,
	Konrad Dybcio, Bjorn Andersson, devicetree, linux-kernel, stable,
	kernel test robot



On 8/13/2025 12:56 PM, Krzysztof Kozlowski wrote:
> On 13/08/2025 08:38, Krishna Kurapati wrote:
>> Correct the address in usb controller node to fix the following warning:
>>
>> Warning (simple_bus_reg): /soc@0/usb@a6f8800: simple-bus unit address
>> format error, expected "a600000"
>>
>> Fixes: c015f76c23ac ("arm64: dts: qcom: sm8450: Fix address for usb controller node")
> 
> There is no such commit in recent next... And how is that you fix commit
> WITH THE SAME title?
> 

I sent it on top of latest linux next.

My bad. Will send a v2. I mentioned wrong title, but the correct SHA.

Thanks for pointing it out.

Regards,
Krishna,

>> Cc: stable@vger.kernel.org
>> Reported-by: kernel test robot <lkp@intel.com>
>> Closes: https://lore.kernel.org/oe-kbuild-all/202508121834.953Mvah2-lkp@intel.com/
>> Signed-off-by: Krishna Kurapati <krishna.kurapati@oss.qualcomm.com>
>> ---
>>   arch/arm64/boot/dts/qcom/sm8450.dtsi | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/arch/arm64/boot/dts/qcom/sm8450.dtsi b/arch/arm64/boot/dts/qcom/sm8450.dtsi
>> index 2baef6869ed7..38c91c3ec787 100644
>> --- a/arch/arm64/boot/dts/qcom/sm8450.dtsi
>> +++ b/arch/arm64/boot/dts/qcom/sm8450.dtsi
>> @@ -5417,7 +5417,7 @@ opp-202000000 {
>>   			};
>>   		};
>>   
>> -		usb_1: usb@a6f8800 {
>> +		usb_1: usb@a600000 {
> 
> There is no such code either...
> 
>>   			compatible = "qcom,sm8450-dwc3", "qcom,snps-dwc3";
>>   			reg = <0 0x0a600000 0 0xfc100>;
>>   			status = "disabled";
> 
> 
> Best regards,
> Krzysztof

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

end of thread, other threads:[~2025-08-13  8:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-13  6:38 [PATCH] arm64: dts: qcom: sm8450: Fix address for usb controller node Krishna Kurapati
2025-08-13  7:26 ` Krzysztof Kozlowski
2025-08-13  8:36   ` Krishna Kurapati
2025-08-13  7:28 ` Neil Armstrong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox