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=-8.3 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS 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 86798C4727E for ; Wed, 23 Sep 2020 20:32:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2F64E20725 for ; Wed, 23 Sep 2020 20:32:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600893175; bh=od8vkfaz+m8IP2LdcWQfBLZnzTi8Gye8zByx+gWnMEA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=FcWfVkGCW8CqZw2vedB0CSWgU63vNxCBtJcM3WJNjj/y2DjXpxio3I6gSy/jUOX8q yLW8nq6nkUf8laUlRC7qd3byv3nD4KRk9Yhwjx/bbhHg6NLlp4cAQ329+7xrLABv2R gf3Zr+XoBcGEvTpDJCELYprAp1zJFNVloA8ooXok= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726768AbgIWUcy (ORCPT ); Wed, 23 Sep 2020 16:32:54 -0400 Received: from mail-il1-f195.google.com ([209.85.166.195]:37718 "EHLO mail-il1-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726199AbgIWUcy (ORCPT ); Wed, 23 Sep 2020 16:32:54 -0400 Received: by mail-il1-f195.google.com with SMTP id q4so923198ils.4; Wed, 23 Sep 2020 13:32:53 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=l38fUYlJKpk/9OHd8y2HNij7IP3dpcOLc/B2f1OuyZ8=; b=co1B9gXv9fiCIbHtb7gOwX3vgbQ4vU6/a3q2pd1C9uszsOY0nm2WRjGGri5017jf21 NE+fWuecUbmfe7VN7RzuGAr/CyAirCTHIybOjnHHbbuFzzfIcbUKP1jtTyV4sfvlOvvC voHJXkUyw5BSQvSGFlBD0GSVRTOW/yxh3KK4zwk7KdAowKFYOgmBVdyoDqxoHAQa7c0y TWxJSoWK7kzPpHRhiURSWksgiIPaYlPnRpovgkmZkUabzC0EdZf6o026eHKfRlBY/nVB qiVNe0CNXO2ik904B7G5J/hQpKtPhzr82T2AOWpttXfcRXpfK0afR1kz1Pj8VYN9p/tj gjfw== X-Gm-Message-State: AOAM533tzceYV9StXhdFG/qdPZt6/oGRpo6PPBGbfDmFQ8kUr8UIVdDT jvrRfL/aohov/wKhPVXBFw== X-Google-Smtp-Source: ABdhPJwN8CdqdU2e1412/M0XJ8hCqZkNOAvpcALfwSyCtBluit3xw9UfNl0bSICZUVIxbIJ0AtqP4w== X-Received: by 2002:a92:a194:: with SMTP id b20mr1297741ill.53.1600893173000; Wed, 23 Sep 2020 13:32:53 -0700 (PDT) Received: from xps15 ([64.188.179.253]) by smtp.gmail.com with ESMTPSA id l10sm352957ilm.75.2020.09.23.13.32.51 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Sep 2020 13:32:52 -0700 (PDT) Received: (nullmailer pid 1255351 invoked by uid 1000); Wed, 23 Sep 2020 20:32:51 -0000 Date: Wed, 23 Sep 2020 14:32:51 -0600 From: Rob Herring To: Krzysztof Kozlowski Cc: devicetree@vger.kernel.org, Matti Vaittinen , linux-kernel@vger.kernel.org, Rob Herring , Lee Jones Subject: Re: [PATCH v2] dt-bindings: mfd: rohm,bd71837-pmic: Add common properties Message-ID: <20200923203251.GA1255317@bogus> References: <20200917193754.542-1-krzk@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200917193754.542-1-krzk@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 17 Sep 2020 21:37:54 +0200, Krzysztof Kozlowski wrote: > 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(+) > Reviewed-by: Rob Herring