Message ID | 20200712044411.23323-1-chris.ruehl@gtsys.com.hk (mailing list archive) |
---|---|
Headers | show
Return-Path: <SRS0=lHSH=AX=vger.kernel.org=linux-hwmon-owner@kernel.org> Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id A1577618 for <patchwork-linux-hwmon@patchwork.kernel.org>; Sun, 12 Jul 2020 04:44:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 924E62072D for <patchwork-linux-hwmon@patchwork.kernel.org>; Sun, 12 Jul 2020 04:44:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728112AbgGLEoU (ORCPT <rfc822;patchwork-linux-hwmon@patchwork.kernel.org>); Sun, 12 Jul 2020 00:44:20 -0400 Received: from server-x.ipv4.hkg02.ds.network ([27.111.83.178]:37130 "EHLO mail.gtsys.com.hk" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1728010AbgGLEoT (ORCPT <rfc822;linux-hwmon@vger.kernel.org>); Sun, 12 Jul 2020 00:44:19 -0400 Received: from localhost (localhost [127.0.0.1]) by mail.gtsys.com.hk (Postfix) with ESMTP id E985C201411B; Sun, 12 Jul 2020 12:44:16 +0800 (HKT) X-Virus-Scanned: Debian amavisd-new at gtsys.com.hk Received: from mail.gtsys.com.hk ([127.0.0.1]) by localhost (mail.gtsys.com.hk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id c7g4X1_s4bSX; Sun, 12 Jul 2020 12:44:16 +0800 (HKT) Received: from s01.gtsys.com.hk (unknown [10.128.4.2]) by mail.gtsys.com.hk (Postfix) with ESMTP id C447C2014570; Sun, 12 Jul 2020 12:44:16 +0800 (HKT) Received: from armhf2.gtsys.com.hk (unknown [10.128.4.15]) by s01.gtsys.com.hk (Postfix) with ESMTP id B41AEC019F4; Sun, 12 Jul 2020 12:44:16 +0800 (HKT) Received: by armhf2.gtsys.com.hk (Postfix, from userid 1000) id 7C210202299; Sun, 12 Jul 2020 12:44:16 +0800 (HKT) From: Chris Ruehl <chris.ruehl@gtsys.com.hk> To: Chris Ruehl <chris.ruehl@gtsys.com.hk> Cc: Jack Lo <jack.lo@gtsys.com.hk>, devicetree@vger.kernel.org, Jean Delvare <jdelvare@suse.com>, Guenter Roeck <linux@roeck-us.net>, linux-hwmon@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v6 0/2] shtc1: add support for device tree bindings Date: Sun, 12 Jul 2020 12:44:08 +0800 Message-Id: <20200712044411.23323-1-chris.ruehl@gtsys.com.hk> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-hwmon-owner@vger.kernel.org Precedence: bulk List-ID: <linux-hwmon.vger.kernel.org> X-Mailing-List: linux-hwmon@vger.kernel.org |
Series |
shtc1: add support for device tree bindings
|
expand
|
Add support for DTS bindings to the shtc driver The patches add the compatible table and of_property_read_bool to the shtc1.c. Newly created Yaml document has been released to the Documentation/devicetree/hwmon/sensirion,shtc1.yaml Signed-off-by: Chris Ruehl <chris.ruehl@gtsys.com.hk> --- Version 6 fix dt_binding_check: missing ';' in examples Version 5 devicetree/driver-source: name conversion sensirion,low-precision sensirion,blocking-io use const: 0x70 with the reg: Version 4 Fix errors report by make dt_binding_check (devicetree) Set maintainers for the yaml document to my own. Version 3 Fix errors report with checkpatch.pl Correct logic, add (!) when check for sensirion,low_precision Version 2 remove the #ifdef CONFIG_OF ignore platform data if dev->of_node is valid use boolean only therefor use sensirion,low_precise to fit the logic add missing driver.of_match_table entry Version 1 initial version