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=-10.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 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 C18ECC5519F for ; Thu, 12 Nov 2020 16:15:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 58A2022249 for ; Thu, 12 Nov 2020 16:15:36 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="llGhNUuH" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728937AbgKLQPf (ORCPT ); Thu, 12 Nov 2020 11:15:35 -0500 Received: from mail.kernel.org ([198.145.29.99]:33116 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728414AbgKLQPf (ORCPT ); Thu, 12 Nov 2020 11:15:35 -0500 Received: from mail-qk1-f176.google.com (mail-qk1-f176.google.com [209.85.222.176]) (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 51DDA22227; Thu, 12 Nov 2020 16:15:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1605197734; bh=F+gcoIj4yektFMcpbgXVAAJo3evAy3thhHuS6cGiWGY=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=llGhNUuHHJ1cZOa93pHbFGlgET5Ako9FEYpIcAzFW+F9QTfGi0WmzaCT7cifUA8yg X1XRdWCILClCkpSVjW6OAPBDYVHQyXOUtrecIei265zKYFLIhPtQ8iaeQeCEg6kifF ogwOlEMR6WmwBofpo2ZDcONw7O0+/aAt+spdtjOQ= Received: by mail-qk1-f176.google.com with SMTP id v143so5768949qkb.2; Thu, 12 Nov 2020 08:15:34 -0800 (PST) X-Gm-Message-State: AOAM531qj9pIYkqdc2SGICbSz8U69DrdFSNKhVGFUc8CpHpsscGwkrBg HJS4DbXQc5esFLn7IICRdPmcQGu9aA99uOBwNA== X-Google-Smtp-Source: ABdhPJwc5ZhfLhx4nInnP6kIhq5fTs3ZM0G91SsTL6q6TAA4lRZBtLIPN8apKhz/mQugOLAjRcEybAs2pzvOty+1fTA= X-Received: by 2002:a05:620a:148c:: with SMTP id w12mr455546qkj.311.1605197733415; Thu, 12 Nov 2020 08:15:33 -0800 (PST) MIME-Version: 1.0 References: <1605097613-25301-1-git-send-email-spujar@nvidia.com> <1605097613-25301-3-git-send-email-spujar@nvidia.com> <20201112160746.GA3681609@bogus> In-Reply-To: <20201112160746.GA3681609@bogus> From: Rob Herring Date: Thu, 12 Nov 2020 10:15:22 -0600 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [PATCH 2/2] ASoC: renesas,rsnd: Update audio graph references To: Sameer Pujar Cc: Mark Brown , Kuninori Morimoto , Linux-ALSA , devicetree@vger.kernel.org, "linux-kernel@vger.kernel.org" Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Thu, Nov 12, 2020 at 10:07 AM Rob Herring wrote: > > On Wed, Nov 11, 2020 at 05:56:53PM +0530, Sameer Pujar wrote: > > Since audio graph schema is refactored now update the related > > references here. > > > > Signed-off-by: Sameer Pujar > > Cc: Kuninori Morimoto > > --- > > Documentation/devicetree/bindings/sound/renesas,rsnd.yaml | 6 ++---- > > 1 file changed, 2 insertions(+), 4 deletions(-) > > This should be part of the first patch. Things break in between. > > > > > diff --git a/Documentation/devicetree/bindings/sound/renesas,rsnd.yaml b/Documentation/devicetree/bindings/sound/renesas,rsnd.yaml > > index 51f4dca..fc2ae22 100644 > > --- a/Documentation/devicetree/bindings/sound/renesas,rsnd.yaml > > +++ b/Documentation/devicetree/bindings/sound/renesas,rsnd.yaml > > @@ -112,12 +112,10 @@ properties: > > - pattern: '^clk_(a|b|c|i)$' > > > > port: > > - description: OF-Graph subnode > > - $ref: "audio-graph-card.yaml#/properties/port" > > + $ref: /schemas/sound/audio-graph.yaml#/properties/port > > > > ports: > > - description: multi OF-Graph subnode > > - $ref: "audio-graph-card.yaml#/properties/ports" > > + $ref: /schemas/graph.yaml#/properties/ports Actually, with the graph.yaml dependency that doesn't work either. I think this probably needs to be a ref to just audio-graph.yaml at the top level and that should pick up port and ports schemas. Rob