From patchwork Mon Jun 19 16:01:04 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Stecklein X-Patchwork-Id: 777834 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3wrwjd0m1Kz9ryv for ; Tue, 20 Jun 2017 02:02:45 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ti.com header.i=@ti.com header.b="W1OGJRmj"; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750780AbdFSQCn (ORCPT ); Mon, 19 Jun 2017 12:02:43 -0400 Received: from fllnx209.ext.ti.com ([198.47.19.16]:16887 "EHLO fllnx209.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752703AbdFSQCl (ORCPT ); Mon, 19 Jun 2017 12:02:41 -0400 Received: from dflxv15.itg.ti.com ([128.247.5.124]) by fllnx209.ext.ti.com (8.15.1/8.15.1) with ESMTP id v5JG1HJh025380; Mon, 19 Jun 2017 11:01:17 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ti.com; s=ti-com-17Q1; t=1497888077; bh=hUCyh89OD71ifdV67qWlANBQCt/fcrqPDsRZldHB7zQ=; h=From:To:CC:Subject:Date; b=W1OGJRmjGfpzxwv8cFCB283fnYhrnAIeegNI/wLfHMWZSYXPOAjZH6iPutrS0OGk/ ZKPsUDfxl7v1z0ldihTNojj+ouUacxTNw47W8AAOR4YV5LM3XhFJ2fViZn2ouHcHiB vWu1rGdXe8cAnOyoJRxWlBB6+ihDl+HzpiuPTF9I= Received: from DFLE73.ent.ti.com (dfle73.ent.ti.com [128.247.5.110]) by dflxv15.itg.ti.com (8.14.3/8.13.8) with ESMTP id v5JG1CI5024480; Mon, 19 Jun 2017 11:01:12 -0500 Received: from dflp32.itg.ti.com (10.64.6.15) by DFLE73.ent.ti.com (128.247.5.110) with Microsoft SMTP Server id 14.3.294.0; Mon, 19 Jun 2017 11:01:11 -0500 Received: from legion.dal.design.ti.com (legion.dal.design.ti.com [128.247.22.53]) by dflp32.itg.ti.com (8.14.3/8.13.8) with ESMTP id v5JG1BGT015094; Mon, 19 Jun 2017 11:01:11 -0500 Received: from localhost (tub.dhcp.ti.com [128.247.58.230]) by legion.dal.design.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id v5JG1B311267; Mon, 19 Jun 2017 11:01:11 -0500 (CDT) From: Michael Stecklein To: Jonathan Cameron , Hartmut Knaack , Lars-Peter Clausen , Peter Meerwald-Stadler , Rob Herring , Mark Rutland CC: "Andrew F . Davis" , Michael Stecklein , , , Subject: [PATCH v2 1/3] dt-bindings: iio: humidity: add bindings for HDC100x sensors Date: Mon, 19 Jun 2017 11:01:04 -0500 Message-ID: <1497888066-12652-1-git-send-email-m-stecklein@ti.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Add the bindings for the family of HDC100x sensors. Signed-off-by: Michael Stecklein Acked-by: Rob Herring --- .../devicetree/bindings/iio/humidity/hdc100x.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Documentation/devicetree/bindings/iio/humidity/hdc100x.txt diff --git a/Documentation/devicetree/bindings/iio/humidity/hdc100x.txt b/Documentation/devicetree/bindings/iio/humidity/hdc100x.txt new file mode 100644 index 0000000..c52333b --- /dev/null +++ b/Documentation/devicetree/bindings/iio/humidity/hdc100x.txt @@ -0,0 +1,17 @@ +* HDC100x temperature + humidity sensors + +Required properties: + - compatible: Should contain one of the following: + ti,hdc1000 + ti,hdc1008 + ti,hdc1010 + ti,hdc1050 + ti,hdc1080 + - reg: i2c address of the sensor + +Example: + +hdc100x@40 { + compatible = "ti,hdc1000"; + reg = <0x40>; +};