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=-16.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,USER_AGENT_GIT autolearn=ham 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 46179C433E2 for ; Thu, 17 Sep 2020 07:06:15 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 0C63D221F1 for ; Thu, 17 Sep 2020 07:06:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600326375; bh=hX1In47qa8OCVR1/+Z+2iH6fj4+wNmfyDrAD9kegMnE=; h=From:To:Subject:Date:List-ID:From; b=vaYlfw4G6h3SXL5EJpOlu0MPLb9cB/kVso+XUH5lYxH7iH7iulfcWwc6GrCq7PE1c PJjw3L1YilHPayTCbzUd16PJEhrOZX9BNOFgH7fMDcTcqciQIxte8QYhIbILIAOyvb HpvkYI2sVUxkRoQysKUJmgJjPwQmvp480o3W39jM= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726205AbgIQHGL (ORCPT ); Thu, 17 Sep 2020 03:06:11 -0400 Received: from mail.kernel.org ([198.145.29.99]:55610 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726335AbgIQHFw (ORCPT ); Thu, 17 Sep 2020 03:05:52 -0400 Received: from kozik-lap.mshome.net (unknown [194.230.155.191]) (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 8AB4D206E6; Thu, 17 Sep 2020 07:05:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600326351; bh=hX1In47qa8OCVR1/+Z+2iH6fj4+wNmfyDrAD9kegMnE=; h=From:To:Subject:Date:From; b=OGgk4kTNPctyksWF5avH2T7CgRRwqlo/9o4AcrznGvgvFy5vrDnKIlNSHNQ0pTiAR 4pf0C8cEly7QqSgEleySU4IVb+7mwXPPDBTaMmqy1yc8lBGlh3a7DTe+bxuMCMsD2a FE/jMduluk8vasCcRVo2oWRbEI6BjXBc0L4ixnGA= From: Krzysztof Kozlowski To: Rob Herring , Santosh Shilimkar , Grzegorz Jaszczyk , Krzysztof Kozlowski , Roger Quadros , Suman Anna , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] dt-bindings: soc: ti: ti,pruss: fix schema ID Date: Thu, 17 Sep 2020 09:05:43 +0200 Message-Id: <20200917070543.19064-1-krzk@kernel.org> X-Mailer: git-send-email 2.17.1 Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Add missing '#' to fix schema errors: $id: 'http://devicetree.org/schemas/soc/ti/ti,pruss.yaml' does not match 'http://devicetree.org/schemas/.*\\.yaml#' $schema: 'http://devicetree.org/meta-schemas/core.yaml' is not one of ['http://devicetree.org/meta-schemas/core.yaml#', 'http://devicetree.org/meta-schemas/base.yaml#'] Documentation/devicetree/bindings/soc/ti/ti,pruss.yaml: ignoring, error in schema: $id Signed-off-by: Krzysztof Kozlowski --- Documentation/devicetree/bindings/soc/ti/ti,pruss.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/devicetree/bindings/soc/ti/ti,pruss.yaml b/Documentation/devicetree/bindings/soc/ti/ti,pruss.yaml index cf7dc83f724f..037c51b2f972 100644 --- a/Documentation/devicetree/bindings/soc/ti/ti,pruss.yaml +++ b/Documentation/devicetree/bindings/soc/ti/ti,pruss.yaml @@ -1,8 +1,8 @@ # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 --- -$id: http://devicetree.org/schemas/soc/ti/ti,pruss.yaml -$schema: http://devicetree.org/meta-schemas/core.yaml +$id: http://devicetree.org/schemas/soc/ti/ti,pruss.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# title: |+ TI Programmable Real-Time Unit and Industrial Communication Subsystem -- 2.17.1