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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id ED025C4332F for ; Sun, 6 Nov 2022 17:40:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230353AbiKFRkv (ORCPT ); Sun, 6 Nov 2022 12:40:51 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43066 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229919AbiKFRku (ORCPT ); Sun, 6 Nov 2022 12:40:50 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 67F0763D5; Sun, 6 Nov 2022 09:40:49 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 235ABB80C81; Sun, 6 Nov 2022 17:40:48 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 02AA5C433D7; Sun, 6 Nov 2022 17:40:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1667756446; bh=q/yAJG+gPPwQsHpI0BDyRwMkyjUzzL21ov3sPjMsNJI=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=WCfgzYSscEuCtTd8yXBem5vLLMAzsO9bMMWxKsajo7rHSSPzwng/6JlTDVG9gvGwu qCLbbLXCsHaPBpfUAjKRjUjgbE1iRrCQAa9LdO7dQB0OZ66DQUBEfGqxQAvbIXHLwR NW1IGwJxBpfd1FTK3rio3EH/gcqmEz1xqrpNTSko4TGBxxkuujwduRdxT4L50krI9L nFQfrzneMIEhTuDpivWYoLxjtGFEydlK51LzJMDYvzKlmVOOhejg/qiesjlaBC0HJx MhTKHy0NP+ba5wdFb5EsQWUAWC1PoGSnFDT5bnlBZJzdpzdM2vft0915C4plyuQWyU 4dhyJIDyGdrrg== Date: Sun, 6 Nov 2022 17:40:38 +0000 From: Jonathan Cameron To: Antoniu Miclaus Cc: , , , , Subject: Re: [PATCH 0/3] Add support for ADF4377 Message-ID: <20221106174038.20866863@jic23-huawei> In-Reply-To: <20221104092802.90725-1-antoniu.miclaus@analog.com> References: <20221104092802.90725-1-antoniu.miclaus@analog.com> X-Mailer: Claws Mail 4.1.1 (GTK 3.24.34; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org On Fri, 4 Nov 2022 11:27:58 +0200 Antoniu Miclaus wrote: > The ADF4377 is a high performance, ultralow jitter, dual output integer-N > phased locked loop (PLL) with integrated voltage controlled oscillator > (VCO) ideally suited for data converter and mixed signal front end (MxFE) > clock applications. > > Antoniu Miclaus (3): > dt-bindings: iio: frequency: add adf4377 doc > iio: frequency: adf4377: add support for ADF4377 > Documentation: ABI: testing: adf4377: add ABI docs 4 patches in series. I guess you cut and paste from a different version and overwrote that bit... J > > .../testing/sysfs-bus-iio-frequency-adf4377 | 32 + > .../bindings/iio/frequency/adi,adf4377.yaml | 78 ++ > drivers/iio/frequency/Kconfig | 10 + > drivers/iio/frequency/Makefile | 1 + > drivers/iio/frequency/adf4377.c | 1155 +++++++++++++++++ > 5 files changed, 1276 insertions(+) > create mode 100644 Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4377 > create mode 100644 Documentation/devicetree/bindings/iio/frequency/adi,adf4377.yaml > create mode 100644 drivers/iio/frequency/adf4377.c >