public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [RESEND V1 1/1] dt-bindings: auxdisplay: change to unevaluatedProperties
@ 2026-02-26 17:22 Frank Li
  2026-02-26 17:51 ` Andy Shevchenko
  0 siblings, 1 reply; 5+ messages in thread
From: Frank Li @ 2026-02-26 17:22 UTC (permalink / raw)
  To: Robin van der Gracht, Andy Shevchenko, Geert Uytterhoeven,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	open list
  Cc: imx, Frank Li

Change additionalProperties to unevaluatedProperties because it refs to
/schemas/input/matrix-keymap.yaml.

Fix below CHECK_DTBS warnings:
arch/arm/boot/dts/nxp/imx/imx6dl-victgo.dtb: keypad@70 (holtek,ht16k33): 'keypad,num-columns', 'keypad,num-rows' do not match any of the regexes: '^pinctrl-[0-9]+$'
        from schema $id: http://devicetree.org/schemas/auxdisplay/holtek,ht16k33.yaml#

Signed-off-by: Frank Li <Frank.Li@nxp.com>
---
Resend include Rob's Ack tag:
	Acked-by: Rob Herring (Arm) <robh@kernel.org>
---
 .../devicetree/bindings/auxdisplay/holtek,ht16k33.yaml          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml b/Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
index b90eec2077b4b..fe1272e86467e 100644
--- a/Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
+++ b/Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
@@ -66,7 +66,7 @@ then:
   required:
     - refresh-rate-hz
 
-additionalProperties: false
+unevaluatedProperties: false
 
 examples:
   - |
-- 
2.43.0


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

* Re: [RESEND V1 1/1] dt-bindings: auxdisplay: change to unevaluatedProperties
  2026-02-26 17:22 [RESEND V1 1/1] dt-bindings: auxdisplay: change to unevaluatedProperties Frank Li
@ 2026-02-26 17:51 ` Andy Shevchenko
  2026-02-26 17:53   ` Conor Dooley
  0 siblings, 1 reply; 5+ messages in thread
From: Andy Shevchenko @ 2026-02-26 17:51 UTC (permalink / raw)
  To: Frank Li
  Cc: Robin van der Gracht, Andy Shevchenko, Geert Uytterhoeven,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	open list, imx

On Thu, Feb 26, 2026 at 12:22:57PM -0500, Frank Li wrote:
> Change additionalProperties to unevaluatedProperties because it refs to
> /schemas/input/matrix-keymap.yaml.
> 
> Fix below CHECK_DTBS warnings:
> arch/arm/boot/dts/nxp/imx/imx6dl-victgo.dtb: keypad@70 (holtek,ht16k33): 'keypad,num-columns', 'keypad,num-rows' do not match any of the regexes: '^pinctrl-[0-9]+$'
>         from schema $id: http://devicetree.org/schemas/auxdisplay/holtek,ht16k33.yaml#
> 
> Signed-off-by: Frank Li <Frank.Li@nxp.com>
> ---
> Resend include Rob's Ack tag:
> 	Acked-by: Rob Herring (Arm) <robh@kernel.org>

I didn't get this. If it's official, make it official.

Also, shouldn't it have a Fixes tag.

-- 
With Best Regards,
Andy Shevchenko



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

* Re: [RESEND V1 1/1] dt-bindings: auxdisplay: change to unevaluatedProperties
  2026-02-26 17:51 ` Andy Shevchenko
@ 2026-02-26 17:53   ` Conor Dooley
  2026-02-26 17:54     ` Conor Dooley
  0 siblings, 1 reply; 5+ messages in thread
From: Conor Dooley @ 2026-02-26 17:53 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Frank Li, Robin van der Gracht, Andy Shevchenko,
	Geert Uytterhoeven, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	open list, imx

[-- Attachment #1: Type: text/plain, Size: 933 bytes --]

On Thu, Feb 26, 2026 at 07:51:14PM +0200, Andy Shevchenko wrote:
> On Thu, Feb 26, 2026 at 12:22:57PM -0500, Frank Li wrote:
> > Change additionalProperties to unevaluatedProperties because it refs to
> > /schemas/input/matrix-keymap.yaml.
> > 
> > Fix below CHECK_DTBS warnings:
> > arch/arm/boot/dts/nxp/imx/imx6dl-victgo.dtb: keypad@70 (holtek,ht16k33): 'keypad,num-columns', 'keypad,num-rows' do not match any of the regexes: '^pinctrl-[0-9]+$'
> >         from schema $id: http://devicetree.org/schemas/auxdisplay/holtek,ht16k33.yaml#
> > 
> > Signed-off-by: Frank Li <Frank.Li@nxp.com>
> > ---
> > Resend include Rob's Ack tag:
> > 	Acked-by: Rob Herring (Arm) <robh@kernel.org>
> 
> I didn't get this. If it's official, make it official.

Funnily enough, b4 picks up Rob's ack, although I think it gets it from
the original posting.

> Also, shouldn't it have a Fixes tag.

Sounds like it should, yes.


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

* Re: [RESEND V1 1/1] dt-bindings: auxdisplay: change to unevaluatedProperties
  2026-02-26 17:53   ` Conor Dooley
@ 2026-02-26 17:54     ` Conor Dooley
  2026-02-26 20:06       ` Andy Shevchenko
  0 siblings, 1 reply; 5+ messages in thread
From: Conor Dooley @ 2026-02-26 17:54 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Frank Li, Robin van der Gracht, Andy Shevchenko,
	Geert Uytterhoeven, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	open list, imx

[-- Attachment #1: Type: text/plain, Size: 1138 bytes --]

On Thu, Feb 26, 2026 at 05:53:43PM +0000, Conor Dooley wrote:
> On Thu, Feb 26, 2026 at 07:51:14PM +0200, Andy Shevchenko wrote:
> > On Thu, Feb 26, 2026 at 12:22:57PM -0500, Frank Li wrote:
> > > Change additionalProperties to unevaluatedProperties because it refs to
> > > /schemas/input/matrix-keymap.yaml.
> > > 
> > > Fix below CHECK_DTBS warnings:
> > > arch/arm/boot/dts/nxp/imx/imx6dl-victgo.dtb: keypad@70 (holtek,ht16k33): 'keypad,num-columns', 'keypad,num-rows' do not match any of the regexes: '^pinctrl-[0-9]+$'
> > >         from schema $id: http://devicetree.org/schemas/auxdisplay/holtek,ht16k33.yaml#
> > > 
> > > Signed-off-by: Frank Li <Frank.Li@nxp.com>
> > > ---
> > > Resend include Rob's Ack tag:
> > > 	Acked-by: Rob Herring (Arm) <robh@kernel.org>
> > 
> > I didn't get this. If it's official, make it official.
> 
> Funnily enough, b4 picks up Rob's ack, although I think it gets it from
> the original posting.
> 
> > Also, shouldn't it have a Fixes tag.
> 
> Sounds like it should, yes.

And if that requires a resend, the specific binding should likely be
cited in the subject line.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

* Re: [RESEND V1 1/1] dt-bindings: auxdisplay: change to unevaluatedProperties
  2026-02-26 17:54     ` Conor Dooley
@ 2026-02-26 20:06       ` Andy Shevchenko
  0 siblings, 0 replies; 5+ messages in thread
From: Andy Shevchenko @ 2026-02-26 20:06 UTC (permalink / raw)
  To: Conor Dooley
  Cc: Frank Li, Robin van der Gracht, Andy Shevchenko,
	Geert Uytterhoeven, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	open list, imx

On Thu, Feb 26, 2026 at 05:54:54PM +0000, Conor Dooley wrote:
> On Thu, Feb 26, 2026 at 05:53:43PM +0000, Conor Dooley wrote:
> > On Thu, Feb 26, 2026 at 07:51:14PM +0200, Andy Shevchenko wrote:
> > > On Thu, Feb 26, 2026 at 12:22:57PM -0500, Frank Li wrote:
> > > > Change additionalProperties to unevaluatedProperties because it refs to
> > > > /schemas/input/matrix-keymap.yaml.
> > > > 
> > > > Fix below CHECK_DTBS warnings:
> > > > arch/arm/boot/dts/nxp/imx/imx6dl-victgo.dtb: keypad@70 (holtek,ht16k33): 'keypad,num-columns', 'keypad,num-rows' do not match any of the regexes: '^pinctrl-[0-9]+$'
> > > >         from schema $id: http://devicetree.org/schemas/auxdisplay/holtek,ht16k33.yaml#
> > > > 
> > > > Signed-off-by: Frank Li <Frank.Li@nxp.com>
> > > > ---
> > > > Resend include Rob's Ack tag:
> > > > 	Acked-by: Rob Herring (Arm) <robh@kernel.org>
> > > 
> > > I didn't get this. If it's official, make it official.
> > 
> > Funnily enough, b4 picks up Rob's ack, although I think it gets it from
> > the original posting.
> > 
> > > Also, shouldn't it have a Fixes tag.
> > 
> > Sounds like it should, yes.
> 
> And if that requires a resend, the specific binding should likely be
> cited in the subject line.

Yeah, please resend with tags added and Subject corrected.

-- 
With Best Regards,
Andy Shevchenko



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

end of thread, other threads:[~2026-02-26 20:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-26 17:22 [RESEND V1 1/1] dt-bindings: auxdisplay: change to unevaluatedProperties Frank Li
2026-02-26 17:51 ` Andy Shevchenko
2026-02-26 17:53   ` Conor Dooley
2026-02-26 17:54     ` Conor Dooley
2026-02-26 20:06       ` Andy Shevchenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox