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=-5.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS autolearn=no 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 5B05EC433F5 for ; Sat, 11 Sep 2021 16:53:21 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2EC6C61215 for ; Sat, 11 Sep 2021 16:53:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232047AbhIKQyc (ORCPT ); Sat, 11 Sep 2021 12:54:32 -0400 Received: from ixit.cz ([94.230.151.217]:47570 "EHLO ixit.cz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231894AbhIKQyc (ORCPT ); Sat, 11 Sep 2021 12:54:32 -0400 Received: from [192.168.1.138] (ixit.cz [94.230.151.217]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by ixit.cz (Postfix) with ESMTPSA id 5B19223B26; Sat, 11 Sep 2021 18:53:15 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ixit.cz; s=dkim; t=1631379195; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=fy867mwtI+btimF9yB6LpZbX58VDnX58NjAlCh8Ahe8=; b=NbEEM4YxsuUVwtUljRcIETxJiwq5LFdNTlBqVkDMHkVavZ5g92CbuP+vd8PfI1EXyu7lZx tcoCEnX8GMq5Q2iNrl4p10SnUPY/XTdyUyD8MJW3Iom4h29e3U5L/wR7l/U2p4D+yNnApl mthhFdhcPaaZp4TzfnvvFmCTxCsduj4= Date: Sat, 11 Sep 2021 18:51:58 +0200 From: David Heidelberg Subject: Re: [RFC PATCH] [v2] dt-bindings: arm/msm/qcom,idle-state convert to YAML To: Rob Herring Cc: Bjorn Andersson , linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Message-Id: In-Reply-To: References: <20210908171453.53259-1-david@ixit.cz> X-Mailer: geary/40.0 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org Thank you for the input, for now I applied option 1 to my another tegra-ehci binding (instead of having own file) and it lead to success, so I'll choose option 1 for this case too. Best regards David Heidelberg On Fri, Sep 10 2021 at 17:04:25 -0500, Rob Herring wrote: > On Wed, Sep 08, 2021 at 07:14:53PM +0200, David Heidelberg wrote: >> Switched maintainer from Lina to Bjorn. >> >> Doesn't fix: >> ``` >> idle-states: 'spc' does not match any of the regexes: >> '^(cpu|cluster)-', 'pinctrl-[0-9]+' >> ``` >> from colliding arm/idle-states.yaml . > > Your options are: > > - Drop this and add your node names and compatible strings to > idle-states.yaml. A variation of this is change the QCom node names > in dts files to match. Those look like the only real differences. > > - Extract the common idle state node properties to a common schema to > reference from both schemas. > > I'd lean towards option 1 unless there are other variations of > idle-state nodes that also need option 2. > > Rob