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=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 B178FC4320A for ; Tue, 24 Aug 2021 13:02:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 964E261373 for ; Tue, 24 Aug 2021 13:02:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237228AbhHXNDW (ORCPT ); Tue, 24 Aug 2021 09:03:22 -0400 Received: from mail-ot1-f44.google.com ([209.85.210.44]:40671 "EHLO mail-ot1-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233952AbhHXNDW (ORCPT ); Tue, 24 Aug 2021 09:03:22 -0400 Received: by mail-ot1-f44.google.com with SMTP id x9-20020a056830278900b0051b8be1192fso25075196otu.7; Tue, 24 Aug 2021 06:02:38 -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=9VWjrEJ3/Xa2p+Cprxr7GKsxNrb6LxrOwwoVXbs42sE=; b=tdNGSY99W3gALjxNDynWTyFXRtfIpEQSNMRhLlbXjYe+VSmTOFbq0yHta4AtoLbg5q 1PITSwGQZXzqyeyQXtBb9KU+TrVyQccSWUXyAZpv4gHMI5Raw6bQPh4grK/husJEs4mf xBd0Tf6FXrPAxek94dY3XyN5xQfcKBuX5Ftpzd7DbtbRu+H4xdByRaUOCkuIJwxf2skY f03OmTcTPMehTECMt2lCKcD0jJ0wtQdPox+RApfzPj8+td8bPLyG3mp6F3x+7hi69iZ7 nMLq0C9OW3eGW3uEeSpveSHKuJgDXxUKbL2Cb1IsUkb11Ak9aRwQp8kcp4kBzfYG/Xeg eQ1g== X-Gm-Message-State: AOAM530FLd8jTLhZdgKXiBwhJNTZNrKsygut7Wt8zoeYhou2nPgr/1go rNfGI6gWjPYi1kLnzGj/TdxRkwigbg== X-Google-Smtp-Source: ABdhPJxzwPQIJdxG9G43iauhYy2EROKwV/KvICmrw72FrW3H0mVF2bQE/lHfRazN3bsmDnABxF6jNw== X-Received: by 2002:aca:1e05:: with SMTP id m5mr2703366oic.29.1629810139988; Tue, 24 Aug 2021 06:02:19 -0700 (PDT) Received: from robh.at.kernel.org (66-90-148-213.dyn.grandenetworks.net. [66.90.148.213]) by smtp.gmail.com with ESMTPSA id y138sm4356945oie.22.2021.08.24.06.02.17 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 24 Aug 2021 06:02:18 -0700 (PDT) Received: (nullmailer pid 116039 invoked by uid 1000); Tue, 24 Aug 2021 13:02:17 -0000 Date: Tue, 24 Aug 2021 08:02:17 -0500 From: Rob Herring To: Krzysztof Kozlowski Cc: Lukasz Luba , linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org, devicetree@vger.kernel.org, Kyungmin Park , linux-pm@vger.kernel.org, MyungJoo Ham , Rob Herring , Chanwoo Choi , linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 2/4] dt-bindings: devfreq: event: convert Samsung Exynos PPMU to dtschema Message-ID: References: <20210820150353.161161-1-krzysztof.kozlowski@canonical.com> <20210820150353.161161-2-krzysztof.kozlowski@canonical.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210820150353.161161-2-krzysztof.kozlowski@canonical.com> Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org On Fri, 20 Aug 2021 17:03:51 +0200, Krzysztof Kozlowski wrote: > Convert Samsung Exynos PPMU bindings to DT schema format using > json-schema. The example is quite different due to the nature of > dtschema examples parsing (no overriding via-label allowed). > > New bindings contain copied description from previous bindings document, > therefore the license is set as GPL-2.0-only. > > Signed-off-by: Krzysztof Kozlowski > > --- > > Changes since v1: > 1. New patch > --- > .../bindings/devfreq/event/exynos-ppmu.txt | 169 ----------------- > .../devfreq/event/samsung,exynos-ppmu.yaml | 174 ++++++++++++++++++ > 2 files changed, 174 insertions(+), 169 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/devfreq/event/exynos-ppmu.txt > create mode 100644 Documentation/devicetree/bindings/devfreq/event/samsung,exynos-ppmu.yaml > Applied, thanks! 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.7 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 811F9C4338F for ; Tue, 24 Aug 2021 13:05:06 +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 4FB7761371 for ; Tue, 24 Aug 2021 13:05:06 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 4FB7761371 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=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=6yRXIkUs4Y7XhWmAKV7OXv0Bowfkqu7FaLXnahIRPQQ=; b=ERUx8rrTx63QER 75nBimCsSY+NssDFv+I4coKFoXd0+3mNrkawcAr7JCrv8fUmJboCDCz4M1/i9WCrjMmEaFNks7JQS u/bJa1C1XjqY9iUk1BMT1uivepNlM3MU1c/ZMfw2w4/kNPHP7OAV2T5mVMsHJ2CU2kggmdD7+uZ/B ekfCQ43xP8Ria7OhgztENzRa4jA1wTbwoyvZOC8r7IPp/0bNIZELVP+MQUZEC0IrCMe8z738RDPjj iBUlOkyOwqBst4tIHFQrFLw7Kper8x6udKWFmlyIPaxwoEk7DipVWsQICJcB/9NcaJiWEeIkZzULU /yt0imVIXjuTsGbCBcYg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mIW4k-00396O-Il; Tue, 24 Aug 2021 13:02:46 +0000 Received: from mail-ot1-f45.google.com ([209.85.210.45]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1mIW4d-00393W-Gp for linux-arm-kernel@lists.infradead.org; Tue, 24 Aug 2021 13:02:43 +0000 Received: by mail-ot1-f45.google.com with SMTP id m7-20020a9d4c87000000b0051875f56b95so45751176otf.6 for ; Tue, 24 Aug 2021 06:02:38 -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=9VWjrEJ3/Xa2p+Cprxr7GKsxNrb6LxrOwwoVXbs42sE=; b=ODmJtZkC6/YxRBN3+qooZB2RLVlmAAml4pkPa1fV8DtajxbuTCMHHkrVU5x+M100ms QJgNHcy4OdlEOuAsxI5psDMRdxgfK6EU6nd1qmZE9FMBoyZFnckVx9uT5YoL3JZS5woK XD/qcisTQ4/oh0HzbnnDTWVf7jnsGR9oLzZ2wqa04De4TfqeR0VcJT3qi/CvysC7dEr9 gYQC1oMYz/8sxetso2GxTBCFBuC9cwD0bSv15rmuw+dB5eKGiHnW3PULmooc8OWkDKcd NLKkivQ1+ZtK08S6PJWyx9Bw4fEwxm0o9zi2IiABZawfM6nK5AfV0yqvAABu+fOcZNO2 S01w== X-Gm-Message-State: AOAM532p9T0UEY47wHiqIJpcXNbL/glFkUJHSq8YIXCLYzNhAHoHDrSI GwkEKkHuUvEYEXtDM9TXFA== X-Google-Smtp-Source: ABdhPJxzwPQIJdxG9G43iauhYy2EROKwV/KvICmrw72FrW3H0mVF2bQE/lHfRazN3bsmDnABxF6jNw== X-Received: by 2002:aca:1e05:: with SMTP id m5mr2703366oic.29.1629810139988; Tue, 24 Aug 2021 06:02:19 -0700 (PDT) Received: from robh.at.kernel.org (66-90-148-213.dyn.grandenetworks.net. [66.90.148.213]) by smtp.gmail.com with ESMTPSA id y138sm4356945oie.22.2021.08.24.06.02.17 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 24 Aug 2021 06:02:18 -0700 (PDT) Received: (nullmailer pid 116039 invoked by uid 1000); Tue, 24 Aug 2021 13:02:17 -0000 Date: Tue, 24 Aug 2021 08:02:17 -0500 From: Rob Herring To: Krzysztof Kozlowski Cc: Lukasz Luba , linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org, devicetree@vger.kernel.org, Kyungmin Park , linux-pm@vger.kernel.org, MyungJoo Ham , Rob Herring , Chanwoo Choi , linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 2/4] dt-bindings: devfreq: event: convert Samsung Exynos PPMU to dtschema Message-ID: References: <20210820150353.161161-1-krzysztof.kozlowski@canonical.com> <20210820150353.161161-2-krzysztof.kozlowski@canonical.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20210820150353.161161-2-krzysztof.kozlowski@canonical.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210824_060239_599003_A5642031 X-CRM114-Status: GOOD ( 13.33 ) 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 Fri, 20 Aug 2021 17:03:51 +0200, Krzysztof Kozlowski wrote: > Convert Samsung Exynos PPMU bindings to DT schema format using > json-schema. The example is quite different due to the nature of > dtschema examples parsing (no overriding via-label allowed). > > New bindings contain copied description from previous bindings document, > therefore the license is set as GPL-2.0-only. > > Signed-off-by: Krzysztof Kozlowski > > --- > > Changes since v1: > 1. New patch > --- > .../bindings/devfreq/event/exynos-ppmu.txt | 169 ----------------- > .../devfreq/event/samsung,exynos-ppmu.yaml | 174 ++++++++++++++++++ > 2 files changed, 174 insertions(+), 169 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/devfreq/event/exynos-ppmu.txt > create mode 100644 Documentation/devicetree/bindings/devfreq/event/samsung,exynos-ppmu.yaml > Applied, thanks! _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel