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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id DD2ECCCA47F for ; Mon, 27 Jun 2022 13:31:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235892AbiF0Nbl (ORCPT ); Mon, 27 Jun 2022 09:31:41 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41608 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235866AbiF0Nba (ORCPT ); Mon, 27 Jun 2022 09:31:30 -0400 Received: from mail-io1-f49.google.com (mail-io1-f49.google.com [209.85.166.49]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3AA0164E4; Mon, 27 Jun 2022 06:31:24 -0700 (PDT) Received: by mail-io1-f49.google.com with SMTP id h85so9547976iof.4; Mon, 27 Jun 2022 06:31:24 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:in-reply-to:references:subject:date :message-id; bh=YBApyAZhryutkj1N0CgYhNXY1+WXUhBmjXDtALNVzOI=; b=hCMvud/6mKxaJaYNG9R4UASuCTNtbY1pl/kUT8ZykgYNwOOgqh4ItVXsGpNB1hsKa6 sE3i8w4bmWA4hNWpsNofNyJuNoucj/z4MTCvevOyRytpI33SQfLrYBpGrN74Yg9nBsh4 Ot8qWBumWj8rdkfGCuA9NR9u5YqQZQmhhGAHdPoDvDpfaqzZRtYwFincFUbtBP9thpFA REuGgRmQbvSkkwziQ1ayCKBzmpRb4OUhhfzblhhUxgl7mtaArhSFRgZiv5Nn19EuXtGG ntILoFrPLAPfd5T2AW08M43fQz9g1m26Qz/biNonPF5oSeugMECaRoA2A0OB+GBXI04L y5sA== X-Gm-Message-State: AJIora8hbRmjW31LblXkop6IR8KEInYQfQM0Fz31Hq/tBzF6QFT62xKU ylherlwi5vim/SynW2ex3Efrzestpg== X-Google-Smtp-Source: AGRyM1smbEVZ88IdJlCAbanipzttn6crpX6AL3iQCbRbOLHyD61OgJYhYskFjkrchfE0bQdfdtAKcg== X-Received: by 2002:a5d:9ac4:0:b0:674:fca5:62db with SMTP id x4-20020a5d9ac4000000b00674fca562dbmr6517964ion.177.1656336683456; Mon, 27 Jun 2022 06:31:23 -0700 (PDT) Received: from robh.at.kernel.org ([64.188.179.253]) by smtp.gmail.com with ESMTPSA id d18-20020a056602185200b00669e1a9588esm5299273ioi.43.2022.06.27.06.31.22 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 27 Jun 2022 06:31:23 -0700 (PDT) Received: (nullmailer pid 2285166 invoked by uid 1000); Mon, 27 Jun 2022 13:31:09 -0000 From: Rob Herring To: Tommaso Merciai Cc: linux-kernel@vger.kernel.org, linux-media@vger.kernel.org, linux-amarula@amarulasolutions.com, Daniel Scally , Mauro Carvalho Chehab , Krzysztof Kozlowski , devicetree@vger.kernel.org, Rob Herring , quentin.schulz@theobroma-systems.com, linuxfancy@googlegroups.com In-Reply-To: <20220624230307.3066530-8-tommaso.merciai@amarulasolutions.com> References: <20220624230307.3066530-1-tommaso.merciai@amarulasolutions.com> <20220624230307.3066530-8-tommaso.merciai@amarulasolutions.com> Subject: Re: [PATCH 7/7] media: dt-bindings: ov5693: document YAML binding Date: Mon, 27 Jun 2022 07:31:09 -0600 Message-Id: <1656336669.640985.2285165.nullmailer@robh.at.kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, 25 Jun 2022 01:03:07 +0200, Tommaso Merciai wrote: > This patch adds documentation of device tree in YAML schema for the > OV5693 CMOS image sensor from Omnivision > > Signed-off-by: Tommaso Merciai > --- > .../bindings/media/i2c/ovti,ov5693.yaml | 123 ++++++++++++++++++ > MAINTAINERS | 1 + > 2 files changed, 124 insertions(+) > create mode 100644 Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml > My bot found errors running 'make DT_CHECKER_FLAGS=-m dt_binding_check' on your patch (DT_CHECKER_FLAGS is new in v5.13): yamllint warnings/errors: ./Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml:123:7: [error] no new line character at the end of file (new-line-at-end-of-file) dtschema/dtc warnings/errors: doc reference errors (make refcheckdocs): See https://patchwork.ozlabs.org/patch/ This check can fail if there are any dependencies. The base for a patch series is generally the most recent rc1. If you already ran 'make dt_binding_check' and didn't see the above error(s), then make sure 'yamllint' is installed and dt-schema is up to date: pip3 install dtschema --upgrade Please check and re-submit.