All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] dt-bindings: arm: qcom: document Mikrotik RB3011 board
@ 2022-10-17  1:46 Krzysztof Kozlowski
  2022-10-17  1:46 ` [PATCH 2/2] ARM: dts: qcom: ipq8064-rb3011: Add SoC compatible Krzysztof Kozlowski
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Krzysztof Kozlowski @ 2022-10-17  1:46 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

Add compatible for existing Mikrotik RB3011 board.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 Documentation/devicetree/bindings/arm/qcom.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/arm/qcom.yaml b/Documentation/devicetree/bindings/arm/qcom.yaml
index 9ae0e7c675b3..87090406c251 100644
--- a/Documentation/devicetree/bindings/arm/qcom.yaml
+++ b/Documentation/devicetree/bindings/arm/qcom.yaml
@@ -262,6 +262,7 @@ properties:
 
       - items:
           - enum:
+              - mikrotik,rb3011
               - qcom,ipq8064-ap148
           - const: qcom,ipq8064
 
-- 
2.34.1


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

* [PATCH 2/2] ARM: dts: qcom: ipq8064-rb3011: Add SoC compatible
  2022-10-17  1:46 [PATCH 1/2] dt-bindings: arm: qcom: document Mikrotik RB3011 board Krzysztof Kozlowski
@ 2022-10-17  1:46 ` Krzysztof Kozlowski
  2022-10-17 11:32   ` konrad.dybcio
  2022-10-17 18:38 ` [PATCH 1/2] dt-bindings: arm: qcom: document Mikrotik RB3011 board Rob Herring
  2022-11-07  3:12 ` (subset) " Bjorn Andersson
  2 siblings, 1 reply; 5+ messages in thread
From: Krzysztof Kozlowski @ 2022-10-17  1:46 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

Add qcom,ipq8064 compatible fallback for the SoC.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm/boot/dts/qcom-ipq8064-rb3011.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/qcom-ipq8064-rb3011.dts b/arch/arm/boot/dts/qcom-ipq8064-rb3011.dts
index 5a65cce2500c..162c9c50e301 100644
--- a/arch/arm/boot/dts/qcom-ipq8064-rb3011.dts
+++ b/arch/arm/boot/dts/qcom-ipq8064-rb3011.dts
@@ -5,7 +5,7 @@
 
 / {
 	model = "MikroTik RB3011UiAS-RM";
-	compatible = "mikrotik,rb3011";
+	compatible = "mikrotik,rb3011", "qcom,ipq8064";
 
 	aliases {
 		serial0 = &gsbi7_serial;
-- 
2.34.1


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

* Re: [PATCH 2/2] ARM: dts: qcom: ipq8064-rb3011: Add SoC compatible
  2022-10-17  1:46 ` [PATCH 2/2] ARM: dts: qcom: ipq8064-rb3011: Add SoC compatible Krzysztof Kozlowski
@ 2022-10-17 11:32   ` konrad.dybcio
  0 siblings, 0 replies; 5+ messages in thread
From: konrad.dybcio @ 2022-10-17 11:32 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel

On 2022-10-17 03:46, Krzysztof Kozlowski wrote:
> Add qcom,ipq8064 compatible fallback for the SoC.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@somainline.org>

Konrad
>  arch/arm/boot/dts/qcom-ipq8064-rb3011.dts | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/boot/dts/qcom-ipq8064-rb3011.dts
> b/arch/arm/boot/dts/qcom-ipq8064-rb3011.dts
> index 5a65cce2500c..162c9c50e301 100644
> --- a/arch/arm/boot/dts/qcom-ipq8064-rb3011.dts
> +++ b/arch/arm/boot/dts/qcom-ipq8064-rb3011.dts
> @@ -5,7 +5,7 @@
> 
>  / {
>  	model = "MikroTik RB3011UiAS-RM";
> -	compatible = "mikrotik,rb3011";
> +	compatible = "mikrotik,rb3011", "qcom,ipq8064";
> 
>  	aliases {
>  		serial0 = &gsbi7_serial;

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

* Re: [PATCH 1/2] dt-bindings: arm: qcom: document Mikrotik RB3011 board
  2022-10-17  1:46 [PATCH 1/2] dt-bindings: arm: qcom: document Mikrotik RB3011 board Krzysztof Kozlowski
  2022-10-17  1:46 ` [PATCH 2/2] ARM: dts: qcom: ipq8064-rb3011: Add SoC compatible Krzysztof Kozlowski
@ 2022-10-17 18:38 ` Rob Herring
  2022-11-07  3:12 ` (subset) " Bjorn Andersson
  2 siblings, 0 replies; 5+ messages in thread
From: Rob Herring @ 2022-10-17 18:38 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Konrad Dybcio, Andy Gross, Krzysztof Kozlowski, linux-kernel,
	Bjorn Andersson, linux-arm-msm, Rob Herring, devicetree

On Sun, 16 Oct 2022 21:46:52 -0400, Krzysztof Kozlowski wrote:
> Add compatible for existing Mikrotik RB3011 board.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  Documentation/devicetree/bindings/arm/qcom.yaml | 1 +
>  1 file changed, 1 insertion(+)
> 

Acked-by: Rob Herring <robh@kernel.org>

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

* Re: (subset) [PATCH 1/2] dt-bindings: arm: qcom: document Mikrotik RB3011 board
  2022-10-17  1:46 [PATCH 1/2] dt-bindings: arm: qcom: document Mikrotik RB3011 board Krzysztof Kozlowski
  2022-10-17  1:46 ` [PATCH 2/2] ARM: dts: qcom: ipq8064-rb3011: Add SoC compatible Krzysztof Kozlowski
  2022-10-17 18:38 ` [PATCH 1/2] dt-bindings: arm: qcom: document Mikrotik RB3011 board Rob Herring
@ 2022-11-07  3:12 ` Bjorn Andersson
  2 siblings, 0 replies; 5+ messages in thread
From: Bjorn Andersson @ 2022-11-07  3:12 UTC (permalink / raw)
  To: krzysztof.kozlowski+dt, devicetree, Rob Herring, linux-arm-msm,
	konrad.dybcio, Krzysztof Kozlowski, linux-kernel, Andy Gross

On Sun, 16 Oct 2022 21:46:52 -0400, Krzysztof Kozlowski wrote:
> Add compatible for existing Mikrotik RB3011 board.
> 
> 

Applied, thanks!

[1/2] dt-bindings: arm: qcom: document Mikrotik RB3011 board
      commit: fb27202bc549a4469576c5b4a18ba3b6d0dd926f
[2/2] ARM: dts: qcom: ipq8064-rb3011: Add SoC compatible
      commit: 78c80faf07c06e1de7d09ded2667cae5bda9df34

Best regards,
-- 
Bjorn Andersson <andersson@kernel.org>

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

end of thread, other threads:[~2022-11-07  3:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-17  1:46 [PATCH 1/2] dt-bindings: arm: qcom: document Mikrotik RB3011 board Krzysztof Kozlowski
2022-10-17  1:46 ` [PATCH 2/2] ARM: dts: qcom: ipq8064-rb3011: Add SoC compatible Krzysztof Kozlowski
2022-10-17 11:32   ` konrad.dybcio
2022-10-17 18:38 ` [PATCH 1/2] dt-bindings: arm: qcom: document Mikrotik RB3011 board Rob Herring
2022-11-07  3:12 ` (subset) " Bjorn Andersson

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.