From patchwork Tue Sep 5 07:34:08 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vadim Pasternak X-Patchwork-Id: 9937823 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id B82056038C for ; Tue, 5 Sep 2017 05:37:13 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id AB2C72872F for ; Tue, 5 Sep 2017 05:37:13 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 9FE0F2887D; Tue, 5 Sep 2017 05:37:13 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 606222872F for ; Tue, 5 Sep 2017 05:37:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754098AbdIEFhN (ORCPT ); Tue, 5 Sep 2017 01:37:13 -0400 Received: from mail-il-dmz.mellanox.com ([193.47.165.129]:40282 "EHLO mellanox.co.il" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1754084AbdIEFhM (ORCPT ); Tue, 5 Sep 2017 01:37:12 -0400 Received: from Internal Mail-Server by MTLPINE1 (envelope-from vadimp@mellanox.com) with ESMTPS (AES256-SHA encrypted); 5 Sep 2017 08:37:06 +0300 Received: from r-mgtswh-226.mtr.labs.mlnx. (r-mgtswh-226.mtr.labs.mlnx [10.209.1.51]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id v855b3Ne032371; Tue, 5 Sep 2017 08:37:06 +0300 From: Vadim Pasternak To: linux@roeck-us.net, robh+dt@kernel.org Cc: linux-hwmon@vger.kernel.org, devicetree@vger.kernel.org, jiri@resnulli.us, Vadim Pasternak Subject: [patch v3 2/2] dt-bindings: hwmon: add binding documentation for max6621 device Date: Tue, 5 Sep 2017 07:34:08 +0000 Message-Id: <1504596848-160952-3-git-send-email-vadimp@mellanox.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1504596848-160952-1-git-send-email-vadimp@mellanox.com> References: <1504596848-160952-1-git-send-email-vadimp@mellanox.com> Sender: linux-hwmon-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-hwmon@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Add binding document for Maxim MAX6621 temperature sensor device. Signed-off-by: Vadim Pasternak --- Documentation/devicetree/bindings/hwmon/max6621.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Documentation/devicetree/bindings/hwmon/max6621.txt diff --git a/Documentation/devicetree/bindings/hwmon/max6621.txt b/Documentation/devicetree/bindings/hwmon/max6621.txt new file mode 100644 index 0000000..c1f7e95 --- /dev/null +++ b/Documentation/devicetree/bindings/hwmon/max6621.txt @@ -0,0 +1,14 @@ +MAX6621 temperature sensor +------------------------- + +This device supports I2C only. + +Requires node properties: +- compatible : "maxim,max6621" +- reg : the I2C address of the device. + +Example: + max6621@2b { + compatible = "maxim,max6621"; + reg = <0x2b>; + };