From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 15CB2C4363D for ; Fri, 2 Oct 2020 16:18:47 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id AADD2206FA for ; Fri, 2 Oct 2020 16:18:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601655526; bh=XtQcpi2VsVyiIP8B3XIaQmsvW+R88K4mS6OhwtQt/S8=; h=From:To:Cc:Subject:Date:List-ID:From; b=h4M3gDGaV6D8cPk/yibHvWn4I7y/UVrjGIWn9td23UzQVSoQIyZOP8VV1e/zuSaxZ dweGlkFtcivZIK5X1ZMmxGcCCKuYTLDSJD66+bJW1yoAn5kpKx8c6lThGms2GvfSvO bhdXVWwLtWmuq2VLcjVWq2jiZCfZzTBoC0eXscec= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388153AbgJBQSp (ORCPT ); Fri, 2 Oct 2020 12:18:45 -0400 Received: from mail.kernel.org ([198.145.29.99]:51054 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2388111AbgJBQSo (ORCPT ); Fri, 2 Oct 2020 12:18:44 -0400 Received: from localhost.localdomain (unknown [194.230.155.194]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id D5DE82085B; Fri, 2 Oct 2020 16:18:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601655523; bh=XtQcpi2VsVyiIP8B3XIaQmsvW+R88K4mS6OhwtQt/S8=; h=From:To:Cc:Subject:Date:From; b=WutDyYK8dYKN87q583WzQFFzY1G7oR10QzePiIqLkHFIFub359xKJzjlA8A+AXacs pfMFCqdfCyBjSymg5Kc7eHj+twVJGA7HFnm4nqMWFABPD2WHideySK3QkzDMoG7fpq R8Cfy6ZD3ip3aFioVrFR6+E4Ns+RpfBvzOGC+YTE= From: Krzysztof Kozlowski To: Jassi Brar , Rob Herring , Dong Aisheng , linux-kernel@vger.kernel.org, devicetree@vger.kernel.org Cc: Krzysztof Kozlowski Subject: [RESEND v3] dt-bindings: mailbox: fsl,mu: Add missing power-domains Date: Fri, 2 Oct 2020 18:18:37 +0200 Message-Id: <20201002161837.5784-1-krzk@kernel.org> X-Mailer: git-send-email 2.17.1 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add quite common property - power-domains - to fix dtbs_check warnings like: arch/arm64/boot/dts/freescale/imx8qxp-mek.dt.yaml: mailbox@5d280000: 'power-domains' does not match any of the regexes: 'pinctrl-[0-9]+' Signed-off-by: Krzysztof Kozlowski Reviewed-by: Dong Aisheng --- Hi Rob, You previously reviewed this patch. Can you pick it up to your tree? Best regards, Krzysztof Changes since v2: 1. Set maxItems to power domains to 1 Changes since v1: 1. Add missing properties instead of unevaluatedProperties --- Documentation/devicetree/bindings/mailbox/fsl,mu.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/devicetree/bindings/mailbox/fsl,mu.yaml b/Documentation/devicetree/bindings/mailbox/fsl,mu.yaml index 7ed096360be2..15cef82cd356 100644 --- a/Documentation/devicetree/bindings/mailbox/fsl,mu.yaml +++ b/Documentation/devicetree/bindings/mailbox/fsl,mu.yaml @@ -72,6 +72,9 @@ properties: description: boolean, if present, means it is for side B MU. type: boolean + power-domains: + maxItems: 1 + required: - compatible - reg -- 2.17.1