linux-doc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Rob Herring <robh@kernel.org>
To: Billy Tsai <billy_tsai@aspeedtech.com>
Cc: andrew@aj.id.au, devicetree@vger.kernel.org,
	krzysztof.kozlowski+dt@linaro.org, linux-doc@vger.kernel.org,
	u.kleine-koenig@pengutronix.de, linux-aspeed@lists.ozlabs.org,
	lee@kernel.org, linux-pwm@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, jdelvare@suse.com,
	linux-hwmon@vger.kernel.org, p.zabel@pengutronix.de,
	joel@jms.id.au, patrick@stwcx.xyz, linux-kernel@vger.kernel.org,
	robh+dt@kernel.org, linux@roeck-us.net, corbet@lwn.net,
	thierry.reding@gmail.com
Subject: Re: [v5 3/5] dt-bindings: mfd: Add aspeed pwm-tach binding
Date: Tue, 06 Jun 2023 04:27:24 -0600	[thread overview]
Message-ID: <168604724448.411496.12229634069665354962.robh@kernel.org> (raw)
In-Reply-To: <20230606094535.5388-4-billy_tsai@aspeedtech.com>


On Tue, 06 Jun 2023 17:45:33 +0800, Billy Tsai wrote:
> Add device binding for aspeed pwm-tach device which is a multi-function
> device include pwm and tach function.
> 
> Signed-off-by: Billy Tsai <billy_tsai@aspeedtech.com>
> 
> ---
>  .../bindings/mfd/aspeed,ast2600-pwm-tach.yaml | 76 +++++++++++++++++++
>  1 file changed, 76 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/mfd/aspeed,ast2600-pwm-tach.yaml
> 

My bot found errors running 'make DT_CHECKER_FLAGS=-m dt_binding_check'
on your patch (DT_CHECKER_FLAGS is new in v5.13):

yamllint warnings/errors:

dtschema/dtc warnings/errors:
Documentation/devicetree/bindings/mfd/aspeed,ast2600-pwm-tach.example.dts:37.15-28: Warning (reg_format): /example-0/pwm-tach@1e610000/tach/fan@0:reg: property has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1)
Documentation/devicetree/bindings/mfd/aspeed,ast2600-pwm-tach.example.dtb: Warning (pci_device_reg): Failed prerequisite 'reg_format'
Documentation/devicetree/bindings/mfd/aspeed,ast2600-pwm-tach.example.dtb: Warning (pci_device_bus_num): Failed prerequisite 'reg_format'
Documentation/devicetree/bindings/mfd/aspeed,ast2600-pwm-tach.example.dtb: Warning (simple_bus_reg): Failed prerequisite 'reg_format'
Documentation/devicetree/bindings/mfd/aspeed,ast2600-pwm-tach.example.dtb: Warning (i2c_bus_reg): Failed prerequisite 'reg_format'
Documentation/devicetree/bindings/mfd/aspeed,ast2600-pwm-tach.example.dtb: Warning (spi_bus_reg): Failed prerequisite 'reg_format'
Documentation/devicetree/bindings/mfd/aspeed,ast2600-pwm-tach.example.dts:36.19-38.15: Warning (avoid_default_addr_size): /example-0/pwm-tach@1e610000/tach/fan@0: Relying on default #address-cells value
Documentation/devicetree/bindings/mfd/aspeed,ast2600-pwm-tach.example.dts:36.19-38.15: Warning (avoid_default_addr_size): /example-0/pwm-tach@1e610000/tach/fan@0: Relying on default #size-cells value
Documentation/devicetree/bindings/mfd/aspeed,ast2600-pwm-tach.example.dtb: Warning (unique_unit_address_if_enabled): Failed prerequisite 'avoid_default_addr_size'

doc reference errors (make refcheckdocs):

See https://patchwork.ozlabs.org/project/devicetree-bindings/patch/20230606094535.5388-4-billy_tsai@aspeedtech.com

The base for the series is generally the latest rc1. A different dependency
should be noted in *this* patch.

If you already ran 'make dt_binding_check' and didn't see the above
error(s), then make sure 'yamllint' is installed and dt-schema is up to
date:

pip3 install dtschema --upgrade

Please check and re-submit after running the above command yourself. Note
that DT_SCHEMA_FILES can be set to your schema file to speed up checking
your schema. However, it must be unset to test all examples with your schema.


  reply	other threads:[~2023-06-06 10:27 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-06  9:45 [v5 0/5] Support pwm/tach driver for aspeed ast26xx Billy Tsai
2023-06-06  9:45 ` [v5 1/5] dt-bindings: pwm: Add bindings for aspeed pwm controller Billy Tsai
2023-06-06 10:42   ` Krzysztof Kozlowski
2023-06-06  9:45 ` [v5 2/5] dt-bindings: hwmon: Add bindings for aspeed tach controller Billy Tsai
2023-06-06 10:46   ` Krzysztof Kozlowski
2023-06-06  9:45 ` [v5 3/5] dt-bindings: mfd: Add aspeed pwm-tach binding Billy Tsai
2023-06-06 10:27   ` Rob Herring [this message]
2023-06-06 10:49   ` Krzysztof Kozlowski
2023-06-06 14:06     ` Patrick Williams
2023-06-06 14:23       ` Krzysztof Kozlowski
     [not found]         ` <SG2PR06MB33652E18980E9CF8E4F0894D8B53A@SG2PR06MB3365.apcprd06.prod.outlook.com>
2023-06-07  7:10           ` Krzysztof Kozlowski
     [not found]             ` <SG2PR06MB33657063A2E3239AD0A21F718B53A@SG2PR06MB3365.apcprd06.prod.outlook.com>
2023-06-07  8:33               ` Krzysztof Kozlowski
2023-06-07  8:55           ` Krzysztof Kozlowski
2023-06-07 18:26           ` Krzysztof Kozlowski
2023-06-08 15:15         ` Rob Herring
2023-06-06  9:45 ` [v5 4/5] pwm: Add Aspeed ast2600 PWM support Billy Tsai
2023-06-06 10:55   ` Krzysztof Kozlowski
2023-06-06  9:45 ` [v5 5/5] hwmon: Add Aspeed ast2600 TACH support Billy Tsai
2023-06-06 10:56   ` Krzysztof Kozlowski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=168604724448.411496.12229634069665354962.robh@kernel.org \
    --to=robh@kernel.org \
    --cc=andrew@aj.id.au \
    --cc=billy_tsai@aspeedtech.com \
    --cc=corbet@lwn.net \
    --cc=devicetree@vger.kernel.org \
    --cc=jdelvare@suse.com \
    --cc=joel@jms.id.au \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=lee@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-aspeed@lists.ozlabs.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-hwmon@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pwm@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=p.zabel@pengutronix.de \
    --cc=patrick@stwcx.xyz \
    --cc=robh+dt@kernel.org \
    --cc=thierry.reding@gmail.com \
    --cc=u.kleine-koenig@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).