From patchwork Tue Sep 20 04:55:38 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mahoda Ratnayaka X-Patchwork-Id: 9341023 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 C9DBD6077A for ; Tue, 20 Sep 2016 04:56:00 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id BB5272969B for ; Tue, 20 Sep 2016 04:56:00 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id AFDD829748; Tue, 20 Sep 2016 04:56:00 +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.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID 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 938402969B for ; Tue, 20 Sep 2016 04:55:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751297AbcITEz6 (ORCPT ); Tue, 20 Sep 2016 00:55:58 -0400 Received: from gate2.alliedtelesis.co.nz ([202.36.163.20]:42212 "EHLO gate2.alliedtelesis.co.nz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751218AbcITEz5 (ORCPT ); Tue, 20 Sep 2016 00:55:57 -0400 Received: from mmarshal3.atlnz.lc (mmarshal3.atlnz.lc [10.32.18.43]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by gate2.alliedtelesis.co.nz (Postfix) with ESMTPS id 655A5806C1; Tue, 20 Sep 2016 16:55:52 +1200 (NZST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=alliedtelesis.co.nz; s=mail; t=1474347352; bh=0mgjpGVL4iH9y6fLgPGfzg2Jq1XojLV09wRZCrRmE7g=; h=From:To:Cc:Subject:Date; b=H5VkIgpBM0LWvbLaVhpL/L7kOxSAusRcp6pd6kJD65rBH2JDoHxPVJ4znABJ0tDnq ZLAsKKzElmr7VrctxvLGOP+Ly7eztJDdqdqXT4A+TlPVshb2FbQ5HQjkIvRkDXOu28 ApEEQk08pqMkiT03Q4aFCjZxDSctz9EmowM7eI9s= Received: from smtp (Not Verified[10.32.16.33]) by mmarshal3.atlnz.lc with Trustwave SEG (v7, 3, 6, 7949) id ; Tue, 20 Sep 2016 16:55:51 +1200 Received: from mahodar-dl.ws.atlnz.lc (mahodar-dl.ws.atlnz.lc [10.33.22.13]) by smtp (Postfix) with ESMTP id 789B313EC4C; Tue, 20 Sep 2016 16:55:47 +1200 (NZST) Received: by mahodar-dl.ws.atlnz.lc (Postfix, from userid 1609) id D4162E0C4C; Tue, 20 Sep 2016 16:55:47 +1200 (NZST) From: Mahoda Ratnayaka To: devicetree@vger.kernel.org, Rob Herring , Mark Rutland , linux-hwmon@vger.kernel.org Cc: Mahoda Ratnayaka , Chris Packham Subject: [PATCH 1/2] Documentation: dtb: lm87: Add hwmon binding documentation. Date: Tue, 20 Sep 2016 16:55:38 +1200 Message-Id: <20160920045538.9548-1-mahoda.ratnayaka@alliedtelesis.co.nz> X-Mailer: git-send-email 2.9.3 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 This patch adds lm87 hwmon device tree node documentation. Signed-off-by: Mahoda Ratnayaka --- Documentation/devicetree/bindings/hwmon/lm87.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Documentation/devicetree/bindings/hwmon/lm87.txt diff --git a/Documentation/devicetree/bindings/hwmon/lm87.txt b/Documentation/devicetree/bindings/hwmon/lm87.txt new file mode 100644 index 0000000..fefcb48 --- /dev/null +++ b/Documentation/devicetree/bindings/hwmon/lm87.txt @@ -0,0 +1,14 @@ +*LM87 temprature sensor. + +Required properties: +- compatible: Should be + "ti,lm87" + +- reg: I2C address + +Example: + +lm87@2e { + compatible = "ti,lm87"; + reg = <0x2e>; +};