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=-5.6 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_1 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 93A4DECE58C for ; Wed, 9 Oct 2019 23:23:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 70A2D218AC for ; Wed, 9 Oct 2019 23:23:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1570663438; bh=XttoPVT3JIWa2WUYaHJRZoNzohZbTQqm2p7BIx9J2Pc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=v7P7bFkb2K4xKjF7tQvYEZM60jhIOHuT/R7fxeM0JRukURmsIhyCLW15ENdbAl6qt t5MagNb0I4/SOtb+gx9YCJXQL9JjUhdlfKlbbynySBdXeVycPLYWANz+YPr9EQNLqI 5UazMIi+qXYwJKFCeqEPdRnRlBsbDZk5ZA1p93/c= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732282AbfJIXX5 (ORCPT ); Wed, 9 Oct 2019 19:23:57 -0400 Received: from mail-oi1-f194.google.com ([209.85.167.194]:35848 "EHLO mail-oi1-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730955AbfJIXX5 (ORCPT ); Wed, 9 Oct 2019 19:23:57 -0400 Received: by mail-oi1-f194.google.com with SMTP id k20so3293304oih.3; Wed, 09 Oct 2019 16:23:56 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=6G6j5//triwk3xD4Q2NO67sGsuWBX7fz1Q5CDaTM4oo=; b=WNoC9+KsSCJYS2KgGc2jzWBe73iViV8sYRRbe7cg75H20IwX7qL0R4Q7IYTUloW5k1 uulTn+G9NELagbi4YMXLZ/cBNfbV0MZQLceeRuuVHqbb3ViQNTsgue9B1NeLe21AtqmE ST3U88qZfc+QK14YB6g3jQiGAMh4Ruc51XuFtk3BlH5TkIv+fTIxK8TblbjNUdQ0ZBha pB2Evwk8jbFQ/3J6dH6xz7tsbYyQ0awmEMpdDfCaCsuqQaDe8VXSQk1a0aavlckoTYcW PDSMj9E4/5I7/KfLCEVuAU4Dfr+aez3xnVHwRRkiJ6HH4sd0MB8HSFQkviC5ulVqMwur SluQ== X-Gm-Message-State: APjAAAVy/fZSogawWggmZNZo3w6jsmFdnl9p6fEZUyWdeYB9RzdnkDps Ru78QAr7Ew7tRNYGJ5pymg== X-Google-Smtp-Source: APXvYqzJgTJPPbbxfeee2bJmvNaVr5twY5I/E/7qtdmrMr6fzT/hlgG9VuCoZMM/C4r9LgJd08JaDQ== X-Received: by 2002:aca:5bd5:: with SMTP id p204mr4759058oib.61.1570663435881; Wed, 09 Oct 2019 16:23:55 -0700 (PDT) Received: from localhost (24-155-109-49.dyn.grandenetworks.net. [24.155.109.49]) by smtp.gmail.com with ESMTPSA id l12sm962125oii.48.2019.10.09.16.23.54 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 09 Oct 2019 16:23:55 -0700 (PDT) Date: Wed, 9 Oct 2019 18:23:54 -0500 From: Rob Herring To: Bartosz Golaszewski Cc: Mark Rutland , Peter Rosin , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-i2c@vger.kernel.org, Bartosz Golaszewski Subject: Re: [PATCH v6 1/2] dt-bindings: at24: convert the binding document to yaml Message-ID: <20191009232354.GA23030@bogus> References: <20191002072047.20895-1-brgl@bgdev.pl> <20191002072047.20895-2-brgl@bgdev.pl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191002072047.20895-2-brgl@bgdev.pl> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 2 Oct 2019 09:20:46 +0200, Bartosz Golaszewski wrote: > From: Bartosz Golaszewski > > Convert the binding document for at24 EEPROMs from txt to yaml. The > compatible property uses a regex pattern to address all the possible > combinations of "vendor,model" strings. > > Signed-off-by: Bartosz Golaszewski > [robh: rework compatible schema, fix missing allOf for $ref, fix errors in example] > Signed-off-by: Rob Herring > [Bartosz: added comments explaining the compatible property] > Signed-off-by: Bartosz Golaszewski > --- > .../devicetree/bindings/eeprom/at24.txt | 90 +-------- > .../devicetree/bindings/eeprom/at24.yaml | 185 ++++++++++++++++++ > MAINTAINERS | 2 +- > 3 files changed, 187 insertions(+), 90 deletions(-) > create mode 100644 Documentation/devicetree/bindings/eeprom/at24.yaml > Applied, thanks. Rob