* [PATCH 0/5] Minor dt warnings fixes
@ 2026-06-10 11:43 Konrad Dybcio
2026-06-10 11:43 ` [PATCH 1/5] arm64: dts: qcom: msm8998-sony-yoshino: Drop extra bias-disable Konrad Dybcio
` (4 more replies)
0 siblings, 5 replies; 12+ messages in thread
From: Konrad Dybcio @ 2026-06-10 11:43 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, André Apitzsch, Luca Weiss, Gabriela David
Cc: linux-arm-msm, devicetree, linux-kernel, Konrad Dybcio
Nothing particularly of note, mechanical fixes
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
---
Konrad Dybcio (5):
arm64: dts: qcom: msm8998-sony-yoshino: Drop extra bias-disable
arm64: dts: qcom: msm8976-longcheer-l9360: Fix accidental node override
arm64: dts: qcom: sdm632-motorola-ocean: Fix LED default trigger property
arm64: dts: qcom: qcs8300-ride: Fix BT RFA supply name
arm64: dts: qcom: talos-evk-som: Fix BT RFA supply name
arch/arm64/boot/dts/qcom/msm8976-longcheer-l9360.dts | 4 ++--
arch/arm64/boot/dts/qcom/msm8998-sony-xperia-yoshino.dtsi | 4 ----
arch/arm64/boot/dts/qcom/qcs8300-ride.dts | 2 +-
arch/arm64/boot/dts/qcom/sdm632-motorola-ocean.dts | 2 +-
arch/arm64/boot/dts/qcom/talos-evk-som.dtsi | 2 +-
5 files changed, 5 insertions(+), 9 deletions(-)
---
base-commit: 49e02880ec0a8c378e811bc9d85da188d7c6204c
change-id: 20260610-topic-june26_dts_fixes-c32e3cf85fdf
Best regards,
--
Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 1/5] arm64: dts: qcom: msm8998-sony-yoshino: Drop extra bias-disable
2026-06-10 11:43 [PATCH 0/5] Minor dt warnings fixes Konrad Dybcio
@ 2026-06-10 11:43 ` Konrad Dybcio
2026-06-10 12:00 ` Krzysztof Kozlowski
2026-06-10 11:43 ` [PATCH 2/5] arm64: dts: qcom: msm8976-longcheer-l9360: Fix accidental node override Konrad Dybcio
` (3 subsequent siblings)
4 siblings, 1 reply; 12+ messages in thread
From: Konrad Dybcio @ 2026-06-10 11:43 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, André Apitzsch, Luca Weiss, Gabriela David
Cc: linux-arm-msm, devicetree, linux-kernel, Konrad Dybcio
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
The msm8998-common i2c5 pin sleep state is defined with a pull-up. The
Sony Yoshino DTSI attempts to override that to bias-disable without
removing the existing bias-pull-up. Remove the override and use the
common definition to resolve a dt checker warning.
The change itself shouldn't have any functional effect, maybe except
a miniscule increase in power usage. The defaults may need revisiting
at a later date either way.
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/msm8998-sony-xperia-yoshino.dtsi | 4 ----
1 file changed, 4 deletions(-)
diff --git a/arch/arm64/boot/dts/qcom/msm8998-sony-xperia-yoshino.dtsi b/arch/arm64/boot/dts/qcom/msm8998-sony-xperia-yoshino.dtsi
index 3650f2501886..04d4741cdb5f 100644
--- a/arch/arm64/boot/dts/qcom/msm8998-sony-xperia-yoshino.dtsi
+++ b/arch/arm64/boot/dts/qcom/msm8998-sony-xperia-yoshino.dtsi
@@ -229,10 +229,6 @@ rmi4-f11@11 {
};
};
-&blsp1_i2c5_sleep {
- bias-disable;
-};
-
&blsp1_uart3 {
status = "okay";
--
2.54.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 2/5] arm64: dts: qcom: msm8976-longcheer-l9360: Fix accidental node override
2026-06-10 11:43 [PATCH 0/5] Minor dt warnings fixes Konrad Dybcio
2026-06-10 11:43 ` [PATCH 1/5] arm64: dts: qcom: msm8998-sony-yoshino: Drop extra bias-disable Konrad Dybcio
@ 2026-06-10 11:43 ` Konrad Dybcio
2026-06-10 12:01 ` Krzysztof Kozlowski
2026-06-10 11:43 ` [PATCH 3/5] arm64: dts: qcom: sdm632-motorola-ocean: Fix LED default trigger property Konrad Dybcio
` (2 subsequent siblings)
4 siblings, 1 reply; 12+ messages in thread
From: Konrad Dybcio @ 2026-06-10 11:43 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, André Apitzsch, Luca Weiss, Gabriela David
Cc: linux-arm-msm, devicetree, linux-kernel, Konrad Dybcio
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
The active and sleep pinctrl states for the touchscreen interrupt pin
shared the same node name, creating a single node, accidentally
overridden immediately after the definition. Alter the names to make
them distinct and to silence DT checker warnings.
Fixes: 79b896e7da7e ("arm64: dts: qcom: msm8976-longcheer-l9360: Add initial device tree")
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/msm8976-longcheer-l9360.dts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm64/boot/dts/qcom/msm8976-longcheer-l9360.dts b/arch/arm64/boot/dts/qcom/msm8976-longcheer-l9360.dts
index 18832a3b9a1c..57f549f06f73 100644
--- a/arch/arm64/boot/dts/qcom/msm8976-longcheer-l9360.dts
+++ b/arch/arm64/boot/dts/qcom/msm8976-longcheer-l9360.dts
@@ -455,14 +455,14 @@ sdc2_cd_sleep: sdc2-cd-sleep-state {
bias-disable;
};
- ts_int_default: ts-int-state {
+ ts_int_default: ts-int-default-state {
pins = "gpio65";
function = "gpio";
drive-strength = <2>;
bias-pull-down;
};
- ts_int_sleep: ts-int-state {
+ ts_int_sleep: ts-int-sleep-state {
pins = "gpio65";
function = "gpio";
drive-strength = <2>;
--
2.54.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 3/5] arm64: dts: qcom: sdm632-motorola-ocean: Fix LED default trigger property
2026-06-10 11:43 [PATCH 0/5] Minor dt warnings fixes Konrad Dybcio
2026-06-10 11:43 ` [PATCH 1/5] arm64: dts: qcom: msm8998-sony-yoshino: Drop extra bias-disable Konrad Dybcio
2026-06-10 11:43 ` [PATCH 2/5] arm64: dts: qcom: msm8976-longcheer-l9360: Fix accidental node override Konrad Dybcio
@ 2026-06-10 11:43 ` Konrad Dybcio
2026-06-10 11:58 ` Krzysztof Kozlowski
2026-06-10 11:43 ` [PATCH 4/5] arm64: dts: qcom: qcs8300-ride: Fix BT RFA supply name Konrad Dybcio
2026-06-10 11:43 ` [PATCH 5/5] arm64: dts: qcom: talos-evk-som: " Konrad Dybcio
4 siblings, 1 reply; 12+ messages in thread
From: Konrad Dybcio @ 2026-06-10 11:43 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, André Apitzsch, Luca Weiss, Gabriela David
Cc: linux-arm-msm, devicetree, linux-kernel, Konrad Dybcio
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
The correct property name is "linux,default-trigger", not
"default-trigger". Fix it to avoid DT checker warnings and let the OSes
consume the intended information.
Fixes: 3176c4d6b9be ("arm64: dts: qcom: sdm632: Add device tree for Motorola G7 Power")
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/sdm632-motorola-ocean.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/qcom/sdm632-motorola-ocean.dts b/arch/arm64/boot/dts/qcom/sdm632-motorola-ocean.dts
index 2f55db0c8ce3..9ea3e5e76bf9 100644
--- a/arch/arm64/boot/dts/qcom/sdm632-motorola-ocean.dts
+++ b/arch/arm64/boot/dts/qcom/sdm632-motorola-ocean.dts
@@ -130,7 +130,7 @@ led-controller@36 {
led: led@1 {
reg = <1>;
- default-trigger = "backlight";
+ linux,default-trigger = "backlight";
function = LED_FUNCTION_BACKLIGHT;
led-sources = <0 1 2>;
};
--
2.54.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 4/5] arm64: dts: qcom: qcs8300-ride: Fix BT RFA supply name
2026-06-10 11:43 [PATCH 0/5] Minor dt warnings fixes Konrad Dybcio
` (2 preceding siblings ...)
2026-06-10 11:43 ` [PATCH 3/5] arm64: dts: qcom: sdm632-motorola-ocean: Fix LED default trigger property Konrad Dybcio
@ 2026-06-10 11:43 ` Konrad Dybcio
2026-06-10 12:03 ` Krzysztof Kozlowski
2026-06-10 11:43 ` [PATCH 5/5] arm64: dts: qcom: talos-evk-som: " Konrad Dybcio
4 siblings, 1 reply; 12+ messages in thread
From: Konrad Dybcio @ 2026-06-10 11:43 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, André Apitzsch, Luca Weiss, Gabriela David
Cc: linux-arm-msm, devicetree, linux-kernel, Konrad Dybcio
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Fix up the supply name to align with bindings.
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/qcs8300-ride.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/qcom/qcs8300-ride.dts b/arch/arm64/boot/dts/qcom/qcs8300-ride.dts
index e9a8553a8d82..1ff39530ea3d 100644
--- a/arch/arm64/boot/dts/qcom/qcs8300-ride.dts
+++ b/arch/arm64/boot/dts/qcom/qcs8300-ride.dts
@@ -837,7 +837,7 @@ bluetooth: bluetooth {
vddbtcmx-supply = <&vreg_pmu_btcmx_0p85>;
vddrfa0p8-supply = <&vreg_pmu_rfa_0p8>;
vddrfa1p2-supply = <&vreg_pmu_rfa_1p2>;
- vddrfa1p8-supply = <&vreg_pmu_rfa_1p7>;
+ vddrfa1p7-supply = <&vreg_pmu_rfa_1p7>;
};
};
--
2.54.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 5/5] arm64: dts: qcom: talos-evk-som: Fix BT RFA supply name
2026-06-10 11:43 [PATCH 0/5] Minor dt warnings fixes Konrad Dybcio
` (3 preceding siblings ...)
2026-06-10 11:43 ` [PATCH 4/5] arm64: dts: qcom: qcs8300-ride: Fix BT RFA supply name Konrad Dybcio
@ 2026-06-10 11:43 ` Konrad Dybcio
2026-06-10 12:05 ` Krzysztof Kozlowski
4 siblings, 1 reply; 12+ messages in thread
From: Konrad Dybcio @ 2026-06-10 11:43 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, André Apitzsch, Luca Weiss, Gabriela David
Cc: linux-arm-msm, devicetree, linux-kernel, Konrad Dybcio
From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Fix up the supply name to align with bindings.
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
---
arch/arm64/boot/dts/qcom/talos-evk-som.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/qcom/talos-evk-som.dtsi b/arch/arm64/boot/dts/qcom/talos-evk-som.dtsi
index 294354c034c3..93e08e141dfb 100644
--- a/arch/arm64/boot/dts/qcom/talos-evk-som.dtsi
+++ b/arch/arm64/boot/dts/qcom/talos-evk-som.dtsi
@@ -527,7 +527,7 @@ bluetooth {
vddbtcmx-supply = <&vreg_pmu_btcmx_0p85>;
vddrfa0p8-supply = <&vreg_pmu_rfa_0p8>;
vddrfa1p2-supply = <&vreg_pmu_rfa_1p2>;
- vddrfa1p8-supply = <&vreg_pmu_rfa_1p7>;
+ vddrfa1p7-supply = <&vreg_pmu_rfa_1p7>;
};
};
--
2.54.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH 3/5] arm64: dts: qcom: sdm632-motorola-ocean: Fix LED default trigger property
2026-06-10 11:43 ` [PATCH 3/5] arm64: dts: qcom: sdm632-motorola-ocean: Fix LED default trigger property Konrad Dybcio
@ 2026-06-10 11:58 ` Krzysztof Kozlowski
0 siblings, 0 replies; 12+ messages in thread
From: Krzysztof Kozlowski @ 2026-06-10 11:58 UTC (permalink / raw)
To: Konrad Dybcio, Bjorn Andersson, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, André Apitzsch, Luca Weiss, Gabriela David
Cc: linux-arm-msm, devicetree, linux-kernel, Konrad Dybcio
On 10/06/2026 13:43, Konrad Dybcio wrote:
> From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
>
> The correct property name is "linux,default-trigger", not
> "default-trigger". Fix it to avoid DT checker warnings and let the OSes
> consume the intended information.
>
> Fixes: 3176c4d6b9be ("arm64: dts: qcom: sdm632: Add device tree for Motorola G7 Power")
> Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
> ---
> arch/arm64/boot/dts/qcom/sdm632-motorola-ocean.dts | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 1/5] arm64: dts: qcom: msm8998-sony-yoshino: Drop extra bias-disable
2026-06-10 11:43 ` [PATCH 1/5] arm64: dts: qcom: msm8998-sony-yoshino: Drop extra bias-disable Konrad Dybcio
@ 2026-06-10 12:00 ` Krzysztof Kozlowski
2026-06-16 12:50 ` Konrad Dybcio
0 siblings, 1 reply; 12+ messages in thread
From: Krzysztof Kozlowski @ 2026-06-10 12:00 UTC (permalink / raw)
To: Konrad Dybcio, Bjorn Andersson, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, André Apitzsch, Luca Weiss, Gabriela David
Cc: linux-arm-msm, devicetree, linux-kernel, Konrad Dybcio
On 10/06/2026 13:43, Konrad Dybcio wrote:
> From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
>
> The msm8998-common i2c5 pin sleep state is defined with a pull-up. The
> Sony Yoshino DTSI attempts to override that to bias-disable without
> removing the existing bias-pull-up. Remove the override and use the
> common definition to resolve a dt checker warning.
Maybe the bias-pull-up should be simply removed? At least you should
document here why you chosen that way to fix the warning.
>
> The change itself shouldn't have any functional effect, maybe except
> a miniscule increase in power usage. The defaults may need revisiting
> at a later date either way.
>
> Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
> ---
> arch/arm64/boot/dts/qcom/msm8998-sony-xperia-yoshino.dtsi | 4 ----
> 1 file changed, 4 deletions(-)
>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 2/5] arm64: dts: qcom: msm8976-longcheer-l9360: Fix accidental node override
2026-06-10 11:43 ` [PATCH 2/5] arm64: dts: qcom: msm8976-longcheer-l9360: Fix accidental node override Konrad Dybcio
@ 2026-06-10 12:01 ` Krzysztof Kozlowski
0 siblings, 0 replies; 12+ messages in thread
From: Krzysztof Kozlowski @ 2026-06-10 12:01 UTC (permalink / raw)
To: Konrad Dybcio, Bjorn Andersson, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, André Apitzsch, Luca Weiss, Gabriela David
Cc: linux-arm-msm, devicetree, linux-kernel, Konrad Dybcio
On 10/06/2026 13:43, Konrad Dybcio wrote:
> From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
>
> The active and sleep pinctrl states for the touchscreen interrupt pin
> shared the same node name, creating a single node, accidentally
> overridden immediately after the definition. Alter the names to make
> them distinct and to silence DT checker warnings.
>
> Fixes: 79b896e7da7e ("arm64: dts: qcom: msm8976-longcheer-l9360: Add initial device tree")
> Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
> ---
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 4/5] arm64: dts: qcom: qcs8300-ride: Fix BT RFA supply name
2026-06-10 11:43 ` [PATCH 4/5] arm64: dts: qcom: qcs8300-ride: Fix BT RFA supply name Konrad Dybcio
@ 2026-06-10 12:03 ` Krzysztof Kozlowski
0 siblings, 0 replies; 12+ messages in thread
From: Krzysztof Kozlowski @ 2026-06-10 12:03 UTC (permalink / raw)
To: Konrad Dybcio, Bjorn Andersson, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, André Apitzsch, Luca Weiss, Gabriela David
Cc: linux-arm-msm, devicetree, linux-kernel, Konrad Dybcio
On 10/06/2026 13:43, Konrad Dybcio wrote:
> From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
>
> Fix up the supply name to align with bindings.
... with qcom,wcn6855-bt bindings, because vddrfa1p8-supply is only in
ATH11K part.
or something similar, because your change is non-obvious and requires a
bit of grepping.
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 5/5] arm64: dts: qcom: talos-evk-som: Fix BT RFA supply name
2026-06-10 11:43 ` [PATCH 5/5] arm64: dts: qcom: talos-evk-som: " Konrad Dybcio
@ 2026-06-10 12:05 ` Krzysztof Kozlowski
0 siblings, 0 replies; 12+ messages in thread
From: Krzysztof Kozlowski @ 2026-06-10 12:05 UTC (permalink / raw)
To: Konrad Dybcio, Bjorn Andersson, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, André Apitzsch, Luca Weiss, Gabriela David
Cc: linux-arm-msm, devicetree, linux-kernel, Konrad Dybcio
On 10/06/2026 13:43, Konrad Dybcio wrote:
> From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
>
> Fix up the supply name to align with bindings.
Could be improved the same way:
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 1/5] arm64: dts: qcom: msm8998-sony-yoshino: Drop extra bias-disable
2026-06-10 12:00 ` Krzysztof Kozlowski
@ 2026-06-16 12:50 ` Konrad Dybcio
0 siblings, 0 replies; 12+ messages in thread
From: Konrad Dybcio @ 2026-06-16 12:50 UTC (permalink / raw)
To: Krzysztof Kozlowski, Konrad Dybcio, Bjorn Andersson, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, André Apitzsch,
Luca Weiss, Gabriela David
Cc: linux-arm-msm, devicetree, linux-kernel
On 6/10/26 2:00 PM, Krzysztof Kozlowski wrote:
> On 10/06/2026 13:43, Konrad Dybcio wrote:
>> From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
>>
>> The msm8998-common i2c5 pin sleep state is defined with a pull-up. The
>> Sony Yoshino DTSI attempts to override that to bias-disable without
>> removing the existing bias-pull-up. Remove the override and use the
>> common definition to resolve a dt checker warning.
>
> Maybe the bias-pull-up should be simply removed? At least you should
> document here why you chosen that way to fix the warning.
Seems that way. Unfortunately it was yours truly who set it up that way
back in 2021.. but I don't see a reason for the pull-up to be there when
the I2C controller is disabled. Maa-a-aybe for some obscure wake up
notifications but that's beyond me.
msm-4.4 sets bias-disabled for all sleep states for all i2c controllers
and e.g. msm8998-xiaomi-sagit overrides that back.
I think the right thing to do would be to set bias-disabled by default
and that's what I'm gonna do for v2
Konrad
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2026-06-16 12:50 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-10 11:43 [PATCH 0/5] Minor dt warnings fixes Konrad Dybcio
2026-06-10 11:43 ` [PATCH 1/5] arm64: dts: qcom: msm8998-sony-yoshino: Drop extra bias-disable Konrad Dybcio
2026-06-10 12:00 ` Krzysztof Kozlowski
2026-06-16 12:50 ` Konrad Dybcio
2026-06-10 11:43 ` [PATCH 2/5] arm64: dts: qcom: msm8976-longcheer-l9360: Fix accidental node override Konrad Dybcio
2026-06-10 12:01 ` Krzysztof Kozlowski
2026-06-10 11:43 ` [PATCH 3/5] arm64: dts: qcom: sdm632-motorola-ocean: Fix LED default trigger property Konrad Dybcio
2026-06-10 11:58 ` Krzysztof Kozlowski
2026-06-10 11:43 ` [PATCH 4/5] arm64: dts: qcom: qcs8300-ride: Fix BT RFA supply name Konrad Dybcio
2026-06-10 12:03 ` Krzysztof Kozlowski
2026-06-10 11:43 ` [PATCH 5/5] arm64: dts: qcom: talos-evk-som: " Konrad Dybcio
2026-06-10 12:05 ` Krzysztof Kozlowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox