Message ID | 20230810144451.1459985-6-alexander.stein@ew.tq-group.com (mailing list archive) |
---|---|
State | Handled Elsewhere, archived |
Headers | show |
Series | imx6q related DT binding fixes | expand |
On Thu, 10 Aug 2023 16:44:50 +0200, Alexander Stein wrote: > Currently the dtbs_check for imx6ul generates warnings like this: > > ['fsl,imx7d-gpt', 'fsl,imx6sx-gpt'] is too long > > The driver has no special handling for fsl,imx7d-gpt, so fsl,imx6sx-gpt is > used. Therefore make imx7d GPT compatible to the imx6sx one to fix the > warning. > > Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com> > --- > Documentation/devicetree/bindings/timer/fsl,imxgpt.yaml | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > Reviewed-by: Rob Herring <robh@kernel.org>
diff --git a/Documentation/devicetree/bindings/timer/fsl,imxgpt.yaml b/Documentation/devicetree/bindings/timer/fsl,imxgpt.yaml index dbe1267af06a..c5d3be8c1d68 100644 --- a/Documentation/devicetree/bindings/timer/fsl,imxgpt.yaml +++ b/Documentation/devicetree/bindings/timer/fsl,imxgpt.yaml @@ -36,7 +36,9 @@ properties: - fsl,imxrt1170-gpt - const: fsl,imx6dl-gpt - items: - - const: fsl,imx6ul-gpt + - enum: + - fsl,imx6ul-gpt + - fsl,imx7d-gpt - const: fsl,imx6sx-gpt reg:
Currently the dtbs_check for imx6ul generates warnings like this: ['fsl,imx7d-gpt', 'fsl,imx6sx-gpt'] is too long The driver has no special handling for fsl,imx7d-gpt, so fsl,imx6sx-gpt is used. Therefore make imx7d GPT compatible to the imx6sx one to fix the warning. Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com> --- Documentation/devicetree/bindings/timer/fsl,imxgpt.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)