From patchwork Wed Oct 19 12:52:52 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mitja Spes X-Patchwork-Id: 616526 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 1DAAAC433FE for ; Wed, 19 Oct 2022 14:18:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231675AbiJSOSB (ORCPT ); Wed, 19 Oct 2022 10:18:01 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48274 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232229AbiJSORp (ORCPT ); Wed, 19 Oct 2022 10:17:45 -0400 X-Greylist: delayed 2124 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Wed, 19 Oct 2022 07:00:53 PDT Received: from dhl.lxnav.com (dhl.lxnav.com [IPv6:2a01:4f8:c010:2f07::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9126EC09AD; Wed, 19 Oct 2022 07:00:52 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id E7D5E40760; Wed, 19 Oct 2022 14:55:08 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lxnav.com; s=dhl; t=1666184110; h=from:subject:date:message-id:to:cc:mime-version: content-transfer-encoding:in-reply-to:references; bh=URJvSDdj3A8sCZTu24AcBhZBWiNAekT3eymuvA4CTvQ=; b=nk5pD0nBky1Ni3TLvDrlFvI6m6eWQGc6nEoWEDZdiTKwoJmeJfKGBk2EjaojXTPaDgb3Jj xVXTiL6+DVMOh/YH2zjkuiS80pqpW5hKPZwmWAr7OubLfLzo9YqHa6Ym1Ytd1RKM+V7gmA Elr0EfpItibsuX0WgFeVlqXw/Wq/kFivh7TqvACLES4SND+3Ph0fWzM8X3Gc/ZlVzIxKEM VNn9Lt4139dmnJyd1IGOjDHTrdfqZ5lvg8FolIcVEBXlnLp5nN9iP0RZ1SEZWWjPXxPwFA 1I4kD0uVVLY3IF9sOIc9gPoUW87g7rKZI0TChJQgApFNuPcQUo9Sye6fHOr5bQ== From: Mitja Spes To: linux-iio@vger.kernel.org, Jonathan Cameron Cc: Mitja Spes , Lars-Peter Clausen , Rob Herring , Andy Shevchenko , Tomasz Duszynski , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 3/3] doc: iio: pressure: ms5611: added max SPI frequency setting to the example Date: Wed, 19 Oct 2022 14:52:52 +0200 Message-Id: <20221019125254.952588-3-mitja@lxnav.com> In-Reply-To: <20221019125254.952588-1-mitja@lxnav.com> References: <20221019125254.952588-1-mitja@lxnav.com> MIME-Version: 1.0 X-Last-TLS-Session-Version: TLSv1.3 Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Added max SPI frequency setting to the example. It is now honored by the driver. Signed-off-by: Mitja Spes --- Documentation/devicetree/bindings/iio/pressure/meas,ms5611.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/devicetree/bindings/iio/pressure/meas,ms5611.yaml b/Documentation/devicetree/bindings/iio/pressure/meas,ms5611.yaml index 4f06707450bf..08bd06e6dabe 100644 --- a/Documentation/devicetree/bindings/iio/pressure/meas,ms5611.yaml +++ b/Documentation/devicetree/bindings/iio/pressure/meas,ms5611.yaml @@ -52,6 +52,7 @@ examples: compatible = "meas,ms5611"; reg = <0>; vdd-supply = <&ldo_3v3_gnss>; + spi-max-frequency = <20000000>; }; }; ...