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=-14.0 required=3.0 tests=BAYES_00,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED 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 89913C47083 for ; Wed, 2 Jun 2021 19:35:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 67BA8613EA for ; Wed, 2 Jun 2021 19:35:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229778AbhFBThI (ORCPT ); Wed, 2 Jun 2021 15:37:08 -0400 Received: from mail-ot1-f50.google.com ([209.85.210.50]:37537 "EHLO mail-ot1-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229774AbhFBThH (ORCPT ); Wed, 2 Jun 2021 15:37:07 -0400 Received: by mail-ot1-f50.google.com with SMTP id v19-20020a0568301413b0290304f00e3d88so3496894otp.4; Wed, 02 Jun 2021 12:35:24 -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; bh=uELX5W19vdK7VgcXeNAPi2/+xnOFs6GHFEA1rcE0XzE=; b=DzlvFftm6esXLAOCrSD2s6LpCMIaiLG4c1Bri3wmTbdIi3RJMMu54A8yneyZn00jM5 /3mBPAu720nrV4a6kpXViyUNvCYmAPlTM1O0NebWyok9shH/6lvGY786hZN8wA8SP6UV dZDAkq5woFw9WdpwSImsVCt9sWmgyW3LHvnQZo9aSVc7gS4SOa9Tzu4w1WzrY6FL0/Hw uI1wwE+Fs1yECED/WBX176lb7xutSLsLYOQp68ahbksh3r4Zw/66c1U2pFa6wED5hS0B 7LHMNfVGRsmDIsjTz6jPF7BudQsUp/BFEc63ZeIegsh0W1LgAHEy7F+08s/rcKPH86Ek M+AQ== X-Gm-Message-State: AOAM532SoONyI5JHn4gAvio1/rZ1EQUQDfwoRlphUHFYfpml8vYMmcpR 7A8cCWvvtXQ5YqfRqCtgiA== X-Google-Smtp-Source: ABdhPJwJX6Gj3B+2OzSEv2IpU3/yiuUkwpDjfxx9RHc6frueeMkWWj/KJ6U61HlAsdHZxzB0xOtKxg== X-Received: by 2002:a9d:6d93:: with SMTP id x19mr26261946otp.117.1622662524090; Wed, 02 Jun 2021 12:35:24 -0700 (PDT) Received: from robh.at.kernel.org (24-155-109-49.dyn.grandenetworks.net. [24.155.109.49]) by smtp.gmail.com with ESMTPSA id g21sm175567otn.67.2021.06.02.12.35.22 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 02 Jun 2021 12:35:23 -0700 (PDT) Received: (nullmailer pid 3844879 invoked by uid 1000); Wed, 02 Jun 2021 19:35:22 -0000 Date: Wed, 2 Jun 2021 14:35:22 -0500 From: Rob Herring To: Lokesh Vutla Cc: u.kleine-koenig@pengutronix.de, Grygorii Strashko , thierry.reding@gmail.com, Device Tree Mailing List , Linux ARM Mailing List , Nishanth Menon , lee.jones@linaro.org, linux-pwm@vger.kernel.org, Linux OMAP Mailing List , Vignesh R , Rob Herring , tony@atomide.com Subject: Re: [PATCH v3 1/2] dt-bindings: pwm: pwm-tiehrpwm: Convert to json schema Message-ID: <20210602193522.GA3844813@robh.at.kernel.org> References: <20210601054402.2223-1-lokeshvutla@ti.com> <20210601054402.2223-2-lokeshvutla@ti.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210601054402.2223-2-lokeshvutla@ti.com> Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Tue, 01 Jun 2021 11:14:01 +0530, Lokesh Vutla wrote: > Convert the tiehrpwm binding to DT schema format using json-schema. > Along with this conversion the following changes are included: > - 'clock' and 'clock-names' properties are marked as required as > driver fails to probe without these properties > - Dropped ti,am33xx-ehrpwm as it is no longer applicable. > - 'power-domains' property is introduced and marked as optional. > > Signed-off-by: Lokesh Vutla > --- > .../devicetree/bindings/pwm/pwm-tiehrpwm.txt | 50 --------------- > .../devicetree/bindings/pwm/pwm-tiehrpwm.yaml | 64 +++++++++++++++++++ > 2 files changed, 64 insertions(+), 50 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/pwm/pwm-tiehrpwm.txt > create mode 100644 Documentation/devicetree/bindings/pwm/pwm-tiehrpwm.yaml > Reviewed-by: Rob Herring 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=-14.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED 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 2B177C4708F for ; Wed, 2 Jun 2021 19:37:09 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id EF829613FF for ; Wed, 2 Jun 2021 19:37:08 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org EF829613FF Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=rXNcwNo3X87SFl1FIEdeMsOoenT63aKO8Mjioae+LUg=; b=422x5Dworqoeni kxdR575vL6MZeBP9/phEREWUqiN/OggtNsF2IwepI0+0qeyr67bTqZc1HzVqix7wUJ+zMw1s1hSUq dGRlyskG35DjB8X9wdq0w+SPpoWVU9GEON7mh4BRHz1r/AoYAxiDFUTIYp9Hl5Lwpy7YhrRGFOv5T OtyO69RBsCy0pzswkPPlBN6V7wlgTgPyKBNJLHr3oYF++j0sVDJDsP8alGOK6XVcmoTWqkBRFUTpq 597QtRtjqaJuFVRtakD4xqkfRwSCal1vUvFMI+QC4OGEomxbyYDcxsWHKNffiTVX6XHQCVsfkQ+nZ KNxRXaB5U3u0nJhTISSA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1loWeI-005z4J-AF; Wed, 02 Jun 2021 19:35:30 +0000 Received: from mail-ot1-f41.google.com ([209.85.210.41]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1loWeD-005z2q-DC for linux-arm-kernel@lists.infradead.org; Wed, 02 Jun 2021 19:35:26 +0000 Received: by mail-ot1-f41.google.com with SMTP id i12-20020a05683033ecb02903346fa0f74dso3477321otu.10 for ; Wed, 02 Jun 2021 12:35:24 -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; bh=uELX5W19vdK7VgcXeNAPi2/+xnOFs6GHFEA1rcE0XzE=; b=m9PiSDJPoPwDwe2SE97sHXenAL1KQxgFab2FFOHV+LjqO6TLCoueumhbMaPOjcdwJg 9SE3kXP4GsOjo8q1gyZXE6I1oPPPlNmRilZxgFccSNu7Ic0rd92LePfgkA7/a5lY0Mr1 E8htSZqVVX3/ANTryS3kbsMycpGQB6JwNEmpGmDjwhyvRwg6tHlRr28YTcuaeNl8kkB2 hF6h94GMJw/5tcdP1it6t61NUHne8yMr12TwLmmfK4WDbAmD00JTP0a8JW9GTgHs09O+ ss/8oeGXH968YzrdO9RmEYUtwguca0KyKhXyj48IusK+2ZCwSd29zcN4KO+51+jX276W EcsA== X-Gm-Message-State: AOAM532/mPfPFUJAtl/n+3gy2n5Reuqb87tALgAZ+AP5TlWzeXroBs10 YCLEIMhlR19jZbz0WwLvag== X-Google-Smtp-Source: ABdhPJwJX6Gj3B+2OzSEv2IpU3/yiuUkwpDjfxx9RHc6frueeMkWWj/KJ6U61HlAsdHZxzB0xOtKxg== X-Received: by 2002:a9d:6d93:: with SMTP id x19mr26261946otp.117.1622662524090; Wed, 02 Jun 2021 12:35:24 -0700 (PDT) Received: from robh.at.kernel.org (24-155-109-49.dyn.grandenetworks.net. [24.155.109.49]) by smtp.gmail.com with ESMTPSA id g21sm175567otn.67.2021.06.02.12.35.22 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 02 Jun 2021 12:35:23 -0700 (PDT) Received: (nullmailer pid 3844879 invoked by uid 1000); Wed, 02 Jun 2021 19:35:22 -0000 Date: Wed, 2 Jun 2021 14:35:22 -0500 From: Rob Herring To: Lokesh Vutla Cc: u.kleine-koenig@pengutronix.de, Grygorii Strashko , thierry.reding@gmail.com, Device Tree Mailing List , Linux ARM Mailing List , Nishanth Menon , lee.jones@linaro.org, linux-pwm@vger.kernel.org, Linux OMAP Mailing List , Vignesh R , Rob Herring , tony@atomide.com Subject: Re: [PATCH v3 1/2] dt-bindings: pwm: pwm-tiehrpwm: Convert to json schema Message-ID: <20210602193522.GA3844813@robh.at.kernel.org> References: <20210601054402.2223-1-lokeshvutla@ti.com> <20210601054402.2223-2-lokeshvutla@ti.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20210601054402.2223-2-lokeshvutla@ti.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210602_123525_469574_6B764CBC X-CRM114-Status: GOOD ( 13.15 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Tue, 01 Jun 2021 11:14:01 +0530, Lokesh Vutla wrote: > Convert the tiehrpwm binding to DT schema format using json-schema. > Along with this conversion the following changes are included: > - 'clock' and 'clock-names' properties are marked as required as > driver fails to probe without these properties > - Dropped ti,am33xx-ehrpwm as it is no longer applicable. > - 'power-domains' property is introduced and marked as optional. > > Signed-off-by: Lokesh Vutla > --- > .../devicetree/bindings/pwm/pwm-tiehrpwm.txt | 50 --------------- > .../devicetree/bindings/pwm/pwm-tiehrpwm.yaml | 64 +++++++++++++++++++ > 2 files changed, 64 insertions(+), 50 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/pwm/pwm-tiehrpwm.txt > create mode 100644 Documentation/devicetree/bindings/pwm/pwm-tiehrpwm.yaml > Reviewed-by: Rob Herring _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel