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=-17.3 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_1 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 CE537C48BE5 for ; Wed, 23 Jun 2021 16:48:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id B2D5661220 for ; Wed, 23 Jun 2021 16:48:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229688AbhFWQvP (ORCPT ); Wed, 23 Jun 2021 12:51:15 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34814 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229523AbhFWQvO (ORCPT ); Wed, 23 Jun 2021 12:51:14 -0400 Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 42649C061574; Wed, 23 Jun 2021 09:48:57 -0700 (PDT) Received: from [192.168.0.20] (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 9702FE2B; Wed, 23 Jun 2021 18:48:55 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1624466935; bh=2Q3CuBEaSWnIDyvrBeSWb0LBJt599dAaAPxvTcLuiiI=; h=Subject:To:Cc:References:Reply-To:From:Date:In-Reply-To:From; b=IxOnxP/2FltRazKxLacWdEU91qBZXQblOhTDfywPhz2CBCO0tN7tyKZ4/9xUEGgnI f7qveQ2kiFsBGzt0yLcM1hzRPKnsqFUPOi286hO0M4aSCq3uICKCkEzzMdItJNm8oX h7MaIDlyR8qln6Uz1HtuuhlG7FUdZn4vtvA1o0PQ= Subject: Re: [PATCH] dt-bindings: display: renesas,du: Fix 'ports' reference To: Rob Herring , devicetree@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Laurent Pinchart , Kieran Bingham , dri-devel@lists.freedesktop.org, linux-renesas-soc@vger.kernel.org References: <20210623164308.2570164-1-robh@kernel.org> Reply-To: kieran.bingham+renesas@ideasonboard.com From: Kieran Bingham Organization: Ideas on Board Message-ID: <1f676239-43be-82cc-4a02-46e4a54821c8@ideasonboard.com> Date: Wed, 23 Jun 2021 17:48:52 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: <20210623164308.2570164-1-robh@kernel.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-GB Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Hi Rob, On 23/06/2021 17:43, Rob Herring wrote: > Fix the renesas,du binding 'ports' schema which is referencing the 'port' > schema instead of the 'ports' schema. > Ah yes indeed. Reviewed-by: Kieran Bingham > Fixes: 99d66127fad2 ("dt-bindings: display: renesas,du: Convert binding to YAML") > Cc: Laurent Pinchart > Cc: Kieran Bingham > Cc: dri-devel@lists.freedesktop.org > Cc: linux-renesas-soc@vger.kernel.org > Signed-off-by: Rob Herring > --- > Documentation/devicetree/bindings/display/renesas,du.yaml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/display/renesas,du.yaml b/Documentation/devicetree/bindings/display/renesas,du.yaml > index 121596f106da..5f4345d43020 100644 > --- a/Documentation/devicetree/bindings/display/renesas,du.yaml > +++ b/Documentation/devicetree/bindings/display/renesas,du.yaml > @@ -55,7 +55,7 @@ properties: > maxItems: 1 > > ports: > - $ref: /schemas/graph.yaml#/properties/port > + $ref: /schemas/graph.yaml#/properties/ports > description: | > The connections to the DU output video ports are modeled using the OF > graph bindings specified in Documentation/devicetree/bindings/graph.txt. >