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=-16.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,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 0DDA1C43464 for ; Thu, 17 Sep 2020 20:05:32 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id BB7FE2065E for ; Thu, 17 Sep 2020 20:05:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600373131; bh=yd314DkCkTXkMXbH9+vztf9d5zQG0/FgZ92JW/yMqZk=; h=From:To:Cc:Subject:Date:List-ID:From; b=mKRLrhd85r7YMKcwd8snvVO7f2CUiv9EiahpB0RYN45r1VN0s1oclqM7XI0JzfKJl 31qO63VnH5AeosdXLpWZ4D8ERzPQhhNnuWPJ1rjehnq3XFTxiB4pvrjAY4p5SbATCk jKZRd/nMqFUKJaFoHvfiruh9ecQ+xkt6j2llgdV0= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726467AbgIQUFa (ORCPT ); Thu, 17 Sep 2020 16:05:30 -0400 Received: from mail.kernel.org ([198.145.29.99]:33046 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726236AbgIQUFa (ORCPT ); Thu, 17 Sep 2020 16:05:30 -0400 Received: from kozik-lap.mshome.net (unknown [194.230.155.191]) (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 D6D30208C3; Thu, 17 Sep 2020 19:37:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600371479; bh=yd314DkCkTXkMXbH9+vztf9d5zQG0/FgZ92JW/yMqZk=; h=From:To:Cc:Subject:Date:From; b=VsvCO6OXMh93mPRVR4zIXffnOTxneISQ1DXuZpLMTNevwcFid7X+d94Xt7uArZ9yf my02CUlAhH5o06y3JfM6qWwThoS5X8yPZK4zbETRCTFd8kBmnjAYFRBZal5J/GXl2z RVm9mgJe1bJ33KdqXIrC6vBkqcNJZGFY/E1WLqNw= From: Krzysztof Kozlowski To: Lee Jones , Rob Herring , Matti Vaittinen , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Krzysztof Kozlowski Subject: [PATCH v2] dt-bindings: mfd: rohm,bd71837-pmic: Add common properties Date: Thu, 17 Sep 2020 21:37:54 +0200 Message-Id: <20200917193754.542-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 common properties appearing in DTSes (clock-names, clock-output-names) with the common values (actually used in DTSes) to fix dtbs_check warnings like: arch/arm64/boot/dts/freescale/imx8mq-librem5-r2.dt.yaml: pmic@4b: 'clock-names', 'clock-output-names', do not match any of the regexes: 'pinctrl-[0-9]+' Signed-off-by: Krzysztof Kozlowski --- Changes since v1: 1. Define the names, as used in existing DTS files. --- .../devicetree/bindings/mfd/rohm,bd71837-pmic.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Documentation/devicetree/bindings/mfd/rohm,bd71837-pmic.yaml b/Documentation/devicetree/bindings/mfd/rohm,bd71837-pmic.yaml index 65018a019e1d..3bfdd33702ad 100644 --- a/Documentation/devicetree/bindings/mfd/rohm,bd71837-pmic.yaml +++ b/Documentation/devicetree/bindings/mfd/rohm,bd71837-pmic.yaml @@ -32,9 +32,15 @@ properties: clocks: maxItems: 1 + clock-names: + const: osc + "#clock-cells": const: 0 + clock-output-names: + const: pmic_clk + # The BD718x7 supports two different HW states as reset target states. States # are called as SNVS and READY. At READY state all the PMIC power outputs go # down and OTP is reload. At the SNVS state all other logic and external -- 2.17.1