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=-15.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,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 61067C433B4 for ; Mon, 17 May 2021 17:21:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 47CFC60FF0 for ; Mon, 17 May 2021 17:21:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242920AbhEQRXF (ORCPT ); Mon, 17 May 2021 13:23:05 -0400 Received: from ssl.serverraum.org ([176.9.125.105]:44655 "EHLO ssl.serverraum.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235374AbhEQRXE (ORCPT ); Mon, 17 May 2021 13:23:04 -0400 Received: from ssl.serverraum.org (web.serverraum.org [172.16.0.2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ssl.serverraum.org (Postfix) with ESMTPSA id 279C422205; Mon, 17 May 2021 19:21:44 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=walle.cc; s=mail2016061301; t=1621272104; 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: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=n0XeYHGKPn3tAk4NE5qtwy+82XOwHicwJhKVYd+Quu0=; b=NLt8ILfsYe7YGec6chkTMlUXi8czCzDDngpe0MJc9oiXEHZdKmD7nSj1TOeSwAe4cs56yF CfVr8FiXxt5qeluBrTq58lurxX/b6qcaH1XNsvAkETX6Rxfvp+Pwt8SoKquz5PG1aEjwzX Ips3+93bYN2qwlryvMcasvdoWSePluE= MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Mon, 17 May 2021 19:21:40 +0200 From: Michael Walle To: Rob Herring Cc: Miquel Raynal , MTD Maling List , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Richard Weinberger , Vignesh Raghavendra , Srinivas Kandagatla Subject: Re: [PATCH v2 2/5] dt-bindings: mtd: add YAML schema for the generic MTD bindings In-Reply-To: References: <20210424110608.15748-3-michael@walle.cc> <20210510104411.11267-1-miquel.raynal@bootlin.com> User-Agent: Roundcube Webmail/1.4.11 Message-ID: <9c95f93c218028898c01970bfd9f3e0a@walle.cc> X-Sender: michael@walle.cc Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Am 2021-05-17 17:12, schrieb Rob Herring: > On Mon, May 10, 2021 at 5:44 AM Miquel Raynal > wrote: >> >> On Sat, 2021-04-24 at 11:06:05 UTC, Michael Walle wrote: >> > Convert MTD's common.txt to mtd.yaml. >> > >> > Signed-off-by: Michael Walle >> > Reviewed-by: Rob Herring >> >> Applied to >> https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git >> mtd/next, thanks. > > This is causing a warning in linux-next: > > /builds/robherring/linux-dt/Documentation/devicetree/bindings/spi/spi-mux.example.dt.yaml: > spi-flash@0: $nodename:0: 'spi-flash@0' does not match '^flash(@.*)?$' > From schema: > /builds/robherring/linux-dt/Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml For reference, the patch which fixes this: https://lore.kernel.org/linux-devicetree/20210517153946.9502-1-michael@walle.cc/ -michael