2024-01-12 11:33:29

by Michal Simek

[permalink] [raw]
Subject: [PATCH] dt-bindings: gpio: xilinx: Fix node address in gpio

Node address doesn't match reg property which is not correct.

Fixes: ba96b2e7974b ("dt-bindings: gpio: gpio-xilinx: Convert Xilinx axi gpio binding to YAML")
Signed-off-by: Michal Simek <[email protected]>
---

Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml b/Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
index c1060e5fcef3..d3d8a2e143ed 100644
--- a/Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
+++ b/Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
@@ -126,7 +126,7 @@ examples:
- |
#include <dt-bindings/interrupt-controller/arm-gic.h>

- gpio@e000a000 {
+ gpio@a0020000 {
compatible = "xlnx,xps-gpio-1.00.a";
reg = <0xa0020000 0x10000>;
#gpio-cells = <2>;
--
2.36.1



2024-01-12 12:03:13

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [PATCH] dt-bindings: gpio: xilinx: Fix node address in gpio

On 12/01/2024 12:32, Michal Simek wrote:
> Node address doesn't match reg property which is not correct.
>
> Fixes: ba96b2e7974b ("dt-bindings: gpio: gpio-xilinx: Convert Xilinx axi gpio binding to YAML")
> Signed-off-by: Michal Simek <[email protected]>
> ---

Reviewed-by: Krzysztof Kozlowski <[email protected]>

Best regards,
Krzysztof


2024-01-15 10:10:28

by Bartosz Golaszewski

[permalink] [raw]
Subject: Re: [PATCH] dt-bindings: gpio: xilinx: Fix node address in gpio

On Fri, Jan 12, 2024 at 12:33 PM Michal Simek <[email protected]> wrote:
>
> Node address doesn't match reg property which is not correct.
>
> Fixes: ba96b2e7974b ("dt-bindings: gpio: gpio-xilinx: Convert Xilinx axi gpio binding to YAML")
> Signed-off-by: Michal Simek <[email protected]>
> ---
>
> Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml b/Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
> index c1060e5fcef3..d3d8a2e143ed 100644
> --- a/Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
> +++ b/Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
> @@ -126,7 +126,7 @@ examples:
> - |
> #include <dt-bindings/interrupt-controller/arm-gic.h>
>
> - gpio@e000a000 {
> + gpio@a0020000 {
> compatible = "xlnx,xps-gpio-1.00.a";
> reg = <0xa0020000 0x10000>;
> #gpio-cells = <2>;
> --
> 2.36.1
>

Queued for fixes, thanks!

Bart