linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] spi: dt-bindings: cadence: add missing 'required'
@ 2022-07-04 13:06 Krzysztof Kozlowski
  2022-07-04 13:06 ` [PATCH 2/2] spi: dt-bindings: zynqmp-qspi: " Krzysztof Kozlowski
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Krzysztof Kozlowski @ 2022-07-04 13:06 UTC (permalink / raw)
  To: Mark Brown, Rob Herring, Krzysztof Kozlowski, Michal Simek,
	Nobuhiro Iwamatsu, linux-spi, devicetree, linux-kernel,
	linux-arm-kernel
  Cc: Krzysztof Kozlowski

During the conversion the bindings lost list of required properties.

Fixes: aa7968682a2b ("spi: convert Cadence SPI bindings to YAML")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 Documentation/devicetree/bindings/spi/spi-cadence.yaml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/Documentation/devicetree/bindings/spi/spi-cadence.yaml b/Documentation/devicetree/bindings/spi/spi-cadence.yaml
index 9787be21318e..82d0ca5c00f3 100644
--- a/Documentation/devicetree/bindings/spi/spi-cadence.yaml
+++ b/Documentation/devicetree/bindings/spi/spi-cadence.yaml
@@ -49,6 +49,13 @@ properties:
     enum: [ 0, 1 ]
     default: 0
 
+required:
+  - compatible
+  - reg
+  - interrupts
+  - clock-names
+  - clocks
+
 unevaluatedProperties: false
 
 examples:
-- 
2.34.1


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

* [PATCH 2/2] spi: dt-bindings: zynqmp-qspi: add missing 'required'
  2022-07-04 13:06 [PATCH 1/2] spi: dt-bindings: cadence: add missing 'required' Krzysztof Kozlowski
@ 2022-07-04 13:06 ` Krzysztof Kozlowski
  2022-07-04 13:10   ` Michal Simek
  2022-07-04 13:09 ` [PATCH 1/2] spi: dt-bindings: cadence: " Michal Simek
  2022-07-04 18:03 ` Mark Brown
  2 siblings, 1 reply; 5+ messages in thread
From: Krzysztof Kozlowski @ 2022-07-04 13:06 UTC (permalink / raw)
  To: Mark Brown, Rob Herring, Krzysztof Kozlowski, Michal Simek,
	Nobuhiro Iwamatsu, linux-spi, devicetree, linux-kernel,
	linux-arm-kernel
  Cc: Krzysztof Kozlowski

During the conversion the bindings lost list of required properties.

Fixes: c58db2abb19f ("spi: convert Xilinx Zynq UltraScale+ MPSoC GQSPI bindings to YAML")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 Documentation/devicetree/bindings/spi/spi-zynqmp-qspi.yaml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/Documentation/devicetree/bindings/spi/spi-zynqmp-qspi.yaml b/Documentation/devicetree/bindings/spi/spi-zynqmp-qspi.yaml
index ea72c8001256..fafde1c06be6 100644
--- a/Documentation/devicetree/bindings/spi/spi-zynqmp-qspi.yaml
+++ b/Documentation/devicetree/bindings/spi/spi-zynqmp-qspi.yaml
@@ -30,6 +30,13 @@ properties:
   clocks:
     maxItems: 2
 
+required:
+  - compatible
+  - reg
+  - interrupts
+  - clock-names
+  - clocks
+
 unevaluatedProperties: false
 
 examples:
-- 
2.34.1


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

* Re: [PATCH 1/2] spi: dt-bindings: cadence: add missing 'required'
  2022-07-04 13:06 [PATCH 1/2] spi: dt-bindings: cadence: add missing 'required' Krzysztof Kozlowski
  2022-07-04 13:06 ` [PATCH 2/2] spi: dt-bindings: zynqmp-qspi: " Krzysztof Kozlowski
@ 2022-07-04 13:09 ` Michal Simek
  2022-07-04 18:03 ` Mark Brown
  2 siblings, 0 replies; 5+ messages in thread
From: Michal Simek @ 2022-07-04 13:09 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Mark Brown, Rob Herring,
	Krzysztof Kozlowski, Michal Simek, Nobuhiro Iwamatsu, linux-spi,
	devicetree, linux-kernel, linux-arm-kernel



On 7/4/22 15:06, Krzysztof Kozlowski wrote:
> 
> 
> During the conversion the bindings lost list of required properties.
> 
> Fixes: aa7968682a2b ("spi: convert Cadence SPI bindings to YAML")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>   Documentation/devicetree/bindings/spi/spi-cadence.yaml | 7 +++++++
>   1 file changed, 7 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/spi/spi-cadence.yaml b/Documentation/devicetree/bindings/spi/spi-cadence.yaml
> index 9787be21318e..82d0ca5c00f3 100644
> --- a/Documentation/devicetree/bindings/spi/spi-cadence.yaml
> +++ b/Documentation/devicetree/bindings/spi/spi-cadence.yaml
> @@ -49,6 +49,13 @@ properties:
>       enum: [ 0, 1 ]
>       default: 0
> 
> +required:
> +  - compatible
> +  - reg
> +  - interrupts
> +  - clock-names
> +  - clocks
> +
>   unevaluatedProperties: false
> 
>   examples:
> --
> 2.34.1
> 

Reviewed-by: Michal Simek <michal.simek@amd.com>

Thanks,
Michal

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

* Re: [PATCH 2/2] spi: dt-bindings: zynqmp-qspi: add missing 'required'
  2022-07-04 13:06 ` [PATCH 2/2] spi: dt-bindings: zynqmp-qspi: " Krzysztof Kozlowski
@ 2022-07-04 13:10   ` Michal Simek
  0 siblings, 0 replies; 5+ messages in thread
From: Michal Simek @ 2022-07-04 13:10 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Mark Brown, Rob Herring,
	Krzysztof Kozlowski, Michal Simek, Nobuhiro Iwamatsu, linux-spi,
	devicetree, linux-kernel, linux-arm-kernel



On 7/4/22 15:06, Krzysztof Kozlowski wrote:
> CAUTION: This message has originated from an External Source. Please use proper judgment and caution when opening attachments, clicking links, or responding to this email.
> 
> 
> During the conversion the bindings lost list of required properties.
> 
> Fixes: c58db2abb19f ("spi: convert Xilinx Zynq UltraScale+ MPSoC GQSPI bindings to YAML")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>   Documentation/devicetree/bindings/spi/spi-zynqmp-qspi.yaml | 7 +++++++
>   1 file changed, 7 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/spi/spi-zynqmp-qspi.yaml b/Documentation/devicetree/bindings/spi/spi-zynqmp-qspi.yaml
> index ea72c8001256..fafde1c06be6 100644
> --- a/Documentation/devicetree/bindings/spi/spi-zynqmp-qspi.yaml
> +++ b/Documentation/devicetree/bindings/spi/spi-zynqmp-qspi.yaml
> @@ -30,6 +30,13 @@ properties:
>     clocks:
>       maxItems: 2
> 
> +required:
> +  - compatible
> +  - reg
> +  - interrupts
> +  - clock-names
> +  - clocks
> +
>   unevaluatedProperties: false
> 
>   examples:
> --
> 2.34.1
> 

Reviewed-by: Michal Simek <michal.simek@amd.com>

Thanks,
Michal

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

* Re: [PATCH 1/2] spi: dt-bindings: cadence: add missing 'required'
  2022-07-04 13:06 [PATCH 1/2] spi: dt-bindings: cadence: add missing 'required' Krzysztof Kozlowski
  2022-07-04 13:06 ` [PATCH 2/2] spi: dt-bindings: zynqmp-qspi: " Krzysztof Kozlowski
  2022-07-04 13:09 ` [PATCH 1/2] spi: dt-bindings: cadence: " Michal Simek
@ 2022-07-04 18:03 ` Mark Brown
  2 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2022-07-04 18:03 UTC (permalink / raw)
  To: linux-arm-kernel, iwamatsu, krzysztof.kozlowski, linux-spi,
	linux-kernel, krzysztof.kozlowski+dt, robh+dt, devicetree,
	michal.simek

On Mon, 4 Jul 2022 15:06:17 +0200, Krzysztof Kozlowski wrote:
> During the conversion the bindings lost list of required properties.
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next

Thanks!

[1/2] spi: dt-bindings: cadence: add missing 'required'
      commit: 6eee27c598fde65988723b785a9c9192d5ffb93a
[2/2] spi: dt-bindings: zynqmp-qspi: add missing 'required'
      commit: acfc34f008c3e66bbcb7b9162c80c8327b6e800f

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

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

end of thread, other threads:[~2022-07-04 18:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-04 13:06 [PATCH 1/2] spi: dt-bindings: cadence: add missing 'required' Krzysztof Kozlowski
2022-07-04 13:06 ` [PATCH 2/2] spi: dt-bindings: zynqmp-qspi: " Krzysztof Kozlowski
2022-07-04 13:10   ` Michal Simek
2022-07-04 13:09 ` [PATCH 1/2] spi: dt-bindings: cadence: " Michal Simek
2022-07-04 18:03 ` Mark Brown

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 NNTP newsgroup(s).