* [PATCH 1/1] media: dt-bindings: sony,imx290: Allow props from video-interface-devices
@ 2024-02-23 12:47 Alexander Stein
2024-02-23 13:16 ` Laurent Pinchart
2024-02-23 18:35 ` Conor Dooley
0 siblings, 2 replies; 3+ messages in thread
From: Alexander Stein @ 2024-02-23 12:47 UTC (permalink / raw)
To: Manivannan Sadhasivam, Mauro Carvalho Chehab, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Shawn Guo, Sascha Hauer,
Pengutronix Kernel Team, Fabio Estevam, NXP Linux Team,
Laurent Pinchart
Cc: Alexander Stein, linux-media, devicetree, linux-arm-kernel,
linux-kernel
Allow properties from video-interface-devices. This aligns the bindings
to sony,imx415.yaml. Changes inspired by commit e2e73ed46c395 ("media:
dt-bindings: sony,imx415: Allow props from video-interface-devices")
Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
---
Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml b/Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
index a531badc16c98..e957b5dd4284d 100644
--- a/Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
+++ b/Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
@@ -23,6 +23,9 @@ description: |-
is treated the same as this as it was the original compatible string.
imx290llr is the mono version of the sensor.
+allOf:
+ - $ref: ../video-interface-devices.yaml#
+
properties:
compatible:
oneOf:
@@ -101,7 +104,7 @@ required:
- vdddo-supply
- port
-additionalProperties: false
+unevaluatedProperties: false
examples:
- |
--
2.34.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] media: dt-bindings: sony,imx290: Allow props from video-interface-devices
2024-02-23 12:47 [PATCH 1/1] media: dt-bindings: sony,imx290: Allow props from video-interface-devices Alexander Stein
@ 2024-02-23 13:16 ` Laurent Pinchart
2024-02-23 18:35 ` Conor Dooley
1 sibling, 0 replies; 3+ messages in thread
From: Laurent Pinchart @ 2024-02-23 13:16 UTC (permalink / raw)
To: Alexander Stein
Cc: Manivannan Sadhasivam, Mauro Carvalho Chehab, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Shawn Guo, Sascha Hauer,
Pengutronix Kernel Team, Fabio Estevam, NXP Linux Team,
linux-media, devicetree, linux-arm-kernel, linux-kernel
Hi Alexander,
Thank you for the patch.
On Fri, Feb 23, 2024 at 01:47:43PM +0100, Alexander Stein wrote:
> Allow properties from video-interface-devices. This aligns the bindings
> to sony,imx415.yaml. Changes inspired by commit e2e73ed46c395 ("media:
> dt-bindings: sony,imx415: Allow props from video-interface-devices")
>
> Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> ---
> Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml b/Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
> index a531badc16c98..e957b5dd4284d 100644
> --- a/Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
> +++ b/Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
> @@ -23,6 +23,9 @@ description: |-
> is treated the same as this as it was the original compatible string.
> imx290llr is the mono version of the sensor.
>
> +allOf:
> + - $ref: ../video-interface-devices.yaml#
I think this should be
- $ref: /schemas/media/video-interface-devices.yaml#
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Bonus points if you would like to send patches to the DT bindings of the
gc0308, gc2145, imx214 and imx415 to fix that :-)
> +
> properties:
> compatible:
> oneOf:
> @@ -101,7 +104,7 @@ required:
> - vdddo-supply
> - port
>
> -additionalProperties: false
> +unevaluatedProperties: false
>
> examples:
> - |
--
Regards,
Laurent Pinchart
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] media: dt-bindings: sony,imx290: Allow props from video-interface-devices
2024-02-23 12:47 [PATCH 1/1] media: dt-bindings: sony,imx290: Allow props from video-interface-devices Alexander Stein
2024-02-23 13:16 ` Laurent Pinchart
@ 2024-02-23 18:35 ` Conor Dooley
1 sibling, 0 replies; 3+ messages in thread
From: Conor Dooley @ 2024-02-23 18:35 UTC (permalink / raw)
To: Alexander Stein
Cc: Manivannan Sadhasivam, Mauro Carvalho Chehab, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Shawn Guo, Sascha Hauer,
Pengutronix Kernel Team, Fabio Estevam, NXP Linux Team,
Laurent Pinchart, linux-media, devicetree, linux-arm-kernel,
linux-kernel
[-- Attachment #1.1: Type: text/plain, Size: 433 bytes --]
On Fri, Feb 23, 2024 at 01:47:43PM +0100, Alexander Stein wrote:
> Allow properties from video-interface-devices. This aligns the bindings
> to sony,imx415.yaml. Changes inspired by commit e2e73ed46c395 ("media:
> dt-bindings: sony,imx415: Allow props from video-interface-devices")
>
> Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
Acked-by: Conor Dooley <conor.dooley@microchip.com>
Cheers,
Conor.
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
[-- Attachment #2: Type: text/plain, Size: 176 bytes --]
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-02-23 18:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-23 12:47 [PATCH 1/1] media: dt-bindings: sony,imx290: Allow props from video-interface-devices Alexander Stein
2024-02-23 13:16 ` Laurent Pinchart
2024-02-23 18:35 ` Conor Dooley
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox