From patchwork Mon May 22 19:32:16 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tim Harvey X-Patchwork-Id: 13251017 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id D8E45C7EE30 for ; Mon, 22 May 2023 19:33:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=XXVQIueRQUhbDvZXM+OKg29AeyuMJR47PdsuOSeiQww=; b=4iNv33BxV45LDl Nu10MBLMGIeeqj+QdosbtzTpWA5mMjNrrtVHyfC2qgWSm/Wub2zTtB1AUwQy4sDQ+D+VVSt7QNi+C hPcKzGbjR9JS4KSGsa1nG8vR7QqPZ0iHSuazZIAXJRIVZGVDYHU1ng33li3qiK6gaUEtyS3W/q7jo 0GvBvb3JubPJgFLhV1M6ObxJ+HEJG9ZreABFkmx+U5mx4O1Gw1rqZb+Qf1yZSUkiu0UsTFZpjsMLe q7TjbDG0pdPTVpqZ9+tTPg35dc+XIruLK/4liVpj4f+pNl8rOQT+z6IiXqy11owNFhE/uMvMn9pBW IhjqTf6ropvHq724VrAA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1q1BGm-007gx8-2t; Mon, 22 May 2023 19:32:36 +0000 Received: from finn.gateworks.com ([108.161.129.64] helo=finn.localdomain) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1q1BGj-007guy-2A for linux-arm-kernel@lists.infradead.org; Mon, 22 May 2023 19:32:35 +0000 Received: from 068-189-091-139.biz.spectrum.com ([68.189.91.139] helo=tharvey.pdc.gateworks.com) by finn.localdomain with esmtp (Exim 4.93) (envelope-from ) id 1q1BGX-005dnF-D7; Mon, 22 May 2023 19:32:21 +0000 From: Tim Harvey To: linux-arm-kernel@lists.infradead.org Cc: Rob Herring , Krzysztof Kozlowski , Shawn Guo , Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team , Li Yang , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Conor Dooley , Tim Harvey , Conor Dooley , Krzysztof Kozlowski Subject: [PATCH v2 1/4] dt-bindings: mfd: gateworks-gsc: remove unnecessary fan-controller nodes Date: Mon, 22 May 2023 12:32:16 -0700 Message-Id: <20230522193219.1477158-1-tharvey@gateworks.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230522_123233_707566_D7E36BE6 X-CRM114-Status: UNSURE ( 8.34 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Remove the unnecessary #address-cells and #size-cells nodes from the fan-controller. These are not needed as the fan controller does not have any children. Signed-off-by: Tim Harvey Acked-by: Conor Dooley Reviewed-by: Krzysztof Kozlowski --- v2: - udpated commit log to explain why the nodes are unnessesary - added Krzysztof's rb tag - added Connor's ab tag --- .../devicetree/bindings/mfd/gateworks-gsc.yaml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml b/Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml index acb9c54942d9..dc379f3ebf24 100644 --- a/Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml +++ b/Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml @@ -122,12 +122,6 @@ patternProperties: compatible: const: gw,gsc-fan - "#address-cells": - const: 1 - - "#size-cells": - const: 0 - reg: description: The fan controller base address maxItems: 1 @@ -135,8 +129,6 @@ patternProperties: required: - compatible - reg - - "#address-cells" - - "#size-cells" required: - compatible @@ -194,8 +186,6 @@ examples: }; fan-controller@2c { - #address-cells = <1>; - #size-cells = <0>; compatible = "gw,gsc-fan"; reg = <0x2c>; }; From patchwork Mon May 22 19:32:17 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tim Harvey X-Patchwork-Id: 13251015 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 11054C77B75 for ; Mon, 22 May 2023 19:32:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=CJ9vqbnb/IXcx8WIZ4QP/bMOmq7S7YygMfO4JIbUqSY=; b=knT/WYYwbYiz4j OYxVMN6demrd+UGYAivJQjtZkKlWVK1FRwlxhN2X3CbpBr4KdH7W04qFSB1kgpcC/9dP+voZstoKc 16LVpS3q0vMge/u/4JBTZCVl4IZKg6UawWiD75HQQE3KiyyXZnhrHnm0fDwd9lss+dzYv+HD9BPJ/ 0vZp81I9d47A/GyXGFZQft8PhsbRsgFzjVg8Rl4VfvkhcUokuD+09CH2p7AotmrG86inD40O98Dqn 24LLXLmV6ARkHzaTnXF3mQGY1wPT65C4GQj6GesxS6wIVL6la3KQP/ZNF8u6jcdirxgwiNSEa0H82 nGFl2keEhOY6M3GtszVQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1q1BGm-007gwf-1M; Mon, 22 May 2023 19:32:36 +0000 Received: from finn.gateworks.com ([108.161.129.64] helo=finn.localdomain) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1q1BGj-007gu5-28 for linux-arm-kernel@lists.infradead.org; Mon, 22 May 2023 19:32:34 +0000 Received: from 068-189-091-139.biz.spectrum.com ([68.189.91.139] helo=tharvey.pdc.gateworks.com) by finn.localdomain with esmtp (Exim 4.93) (envelope-from ) id 1q1BGY-005dnF-8t; Mon, 22 May 2023 19:32:22 +0000 From: Tim Harvey To: linux-arm-kernel@lists.infradead.org Cc: Rob Herring , Krzysztof Kozlowski , Shawn Guo , Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team , Li Yang , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Conor Dooley , Tim Harvey Subject: [PATCH v2 2/4] arm64: dts: imx8mm-venice-gw700x: remove invalid props from fan-controller Date: Mon, 22 May 2023 12:32:17 -0700 Message-Id: <20230522193219.1477158-2-tharvey@gateworks.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230522193219.1477158-1-tharvey@gateworks.com> References: <20230522193219.1477158-1-tharvey@gateworks.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230522_123233_694891_7FB6A8B3 X-CRM114-Status: UNSURE ( 8.34 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Remove the invalid #address-cells and #size-cells nodes from the fan-controller. Signed-off-by: Tim Harvey --- v2: update commit log --- arch/arm64/boot/dts/freescale/imx8mm-venice-gw700x.dtsi | 2 -- 1 file changed, 2 deletions(-) diff --git a/arch/arm64/boot/dts/freescale/imx8mm-venice-gw700x.dtsi b/arch/arm64/boot/dts/freescale/imx8mm-venice-gw700x.dtsi index 9e7d38872157..72cf250d9b4f 100644 --- a/arch/arm64/boot/dts/freescale/imx8mm-venice-gw700x.dtsi +++ b/arch/arm64/boot/dts/freescale/imx8mm-venice-gw700x.dtsi @@ -234,8 +234,6 @@ channel@a2 { }; fan-controller@0 { - #address-cells = <1>; - #size-cells = <0>; compatible = "gw,gsc-fan"; reg = <0x0a>; }; From patchwork Mon May 22 19:32:18 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tim Harvey X-Patchwork-Id: 13251016 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 54CADC77B73 for ; Mon, 22 May 2023 19:32:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=B0+C19jIOMyahiWsgBlBEJX34Dgu1DOl1j3RCNSxolM=; b=qi8FujMfEnWe9w RG4uQxBEHAMIlBogSXpP7OyLRCuE/gT4YNazE37HEJDDnCOdgDdSJ6Bm4zUfnGcHd6tvAWAwf7kbi m9FDDzWyfgQRHQGKXWwIX1aUZ8i0CbHdqakWH+4bscPzgB7OVQ89pTfWBLoitgyi+PP6CB3XNaXlU DTWu+NoJGAwGO11s1gDNLi4tTJY2O31h5mjAAJ8iIyrLG6x/TA3MvWpbUVD1UJbPjxrl2vqY2NAIS tdkeJj/Bozi46qcQNrlLkm9FW6iTiQORvE53e43Yp7MYkrOOhP9hjkAisM2jIvCo7hxsmwj24jRyV qCbkASmHdxE96uX//8ZA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1q1BGn-007gxX-1E; Mon, 22 May 2023 19:32:37 +0000 Received: from finn.gateworks.com ([108.161.129.64] helo=finn.localdomain) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1q1BGj-007gvB-39 for linux-arm-kernel@lists.infradead.org; Mon, 22 May 2023 19:32:35 +0000 Received: from 068-189-091-139.biz.spectrum.com ([68.189.91.139] helo=tharvey.pdc.gateworks.com) by finn.localdomain with esmtp (Exim 4.93) (envelope-from ) id 1q1BGZ-005dnF-42; Mon, 22 May 2023 19:32:23 +0000 From: Tim Harvey To: linux-arm-kernel@lists.infradead.org Cc: Rob Herring , Krzysztof Kozlowski , Shawn Guo , Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team , Li Yang , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Conor Dooley , Tim Harvey Subject: [PATCH v2 3/4] ARM: dts: imx6qdl-gw54xx: remove invalid nodes from fan-controller Date: Mon, 22 May 2023 12:32:18 -0700 Message-Id: <20230522193219.1477158-3-tharvey@gateworks.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230522193219.1477158-1-tharvey@gateworks.com> References: <20230522193219.1477158-1-tharvey@gateworks.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230522_123234_012893_A138FDBF X-CRM114-Status: UNSURE ( 8.57 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Remove the invalid #address-cells and #size-cells nodes from the fan-controller. Signed-off-by: Tim Harvey --- v2: new patch --- arch/arm/boot/dts/imx6qdl-gw54xx.dtsi | 2 -- 1 file changed, 2 deletions(-) diff --git a/arch/arm/boot/dts/imx6qdl-gw54xx.dtsi b/arch/arm/boot/dts/imx6qdl-gw54xx.dtsi index 4e20cb97058e..6c487d40a3b7 100644 --- a/arch/arm/boot/dts/imx6qdl-gw54xx.dtsi +++ b/arch/arm/boot/dts/imx6qdl-gw54xx.dtsi @@ -349,8 +349,6 @@ channel@26 { fan-controller@2c { compatible = "gw,gsc-fan"; - #address-cells = <1>; - #size-cells = <0>; reg = <0x2c>; }; }; From patchwork Mon May 22 19:32:19 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tim Harvey X-Patchwork-Id: 13251018 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id B4FF8C77B75 for ; Mon, 22 May 2023 19:33:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=zVMjhvj6zu00ErMdoPoy2VHM0/+mMKbATskL2cEVmlg=; b=0QJNqPuCM1cPDw 51qbenHV1sv2BAjaXoQL3TeSb1ShPAJDVVUOptc18v/vASqxjl6YNFdMBgTs7AOMnQfHJf4C8DxYU JHbKeNgXkXiQvmsuwasEKQKs3M9L0m8aDplEpo0v+B7kf+Sz6C6+C2UJ24xwYJcPoCiVMK0oGKZha pOm81NnTEc2jqSyuEOB5uNLWO6y5NAVFMuCS5mB0pHERB6RH/8YYmkC3uba1n8eFvO9c/wB5u5Ns9 1SI4sP9SD7Wd6Kqp/r7/l7K9Ck//Lw4Ji13C9PZ8c+LpCCB3ZLYnNbhy6X6V16hf5bB+bv0w4ghQM aIroMSqs+ZPL45Z9RByQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1q1BH3-007h2K-3A; Mon, 22 May 2023 19:32:53 +0000 Received: from finn.gateworks.com ([108.161.129.64] helo=finn.localdomain) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1q1BGl-007gwR-2I for linux-arm-kernel@lists.infradead.org; Mon, 22 May 2023 19:32:36 +0000 Received: from 068-189-091-139.biz.spectrum.com ([68.189.91.139] helo=tharvey.pdc.gateworks.com) by finn.localdomain with esmtp (Exim 4.93) (envelope-from ) id 1q1BGZ-005dnF-Vh; Mon, 22 May 2023 19:32:24 +0000 From: Tim Harvey To: linux-arm-kernel@lists.infradead.org Cc: Rob Herring , Krzysztof Kozlowski , Shawn Guo , Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team , Li Yang , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Conor Dooley , Tim Harvey Subject: [PATCH v2 4/4] ARM: dts: imx6qdl-gw5912: remove invalid nodes from fan-controller Date: Mon, 22 May 2023 12:32:19 -0700 Message-Id: <20230522193219.1477158-4-tharvey@gateworks.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230522193219.1477158-1-tharvey@gateworks.com> References: <20230522193219.1477158-1-tharvey@gateworks.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230522_123235_750775_BB03F1C0 X-CRM114-Status: UNSURE ( 8.57 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Remove the invalid #address-cells and #size-cells nodes from the fan-controller. Signed-off-by: Tim Harvey --- v2: new patch --- arch/arm/boot/dts/imx6qdl-gw5912.dtsi | 2 -- 1 file changed, 2 deletions(-) diff --git a/arch/arm/boot/dts/imx6qdl-gw5912.dtsi b/arch/arm/boot/dts/imx6qdl-gw5912.dtsi index 40e235e315cc..de5983cf7810 100644 --- a/arch/arm/boot/dts/imx6qdl-gw5912.dtsi +++ b/arch/arm/boot/dts/imx6qdl-gw5912.dtsi @@ -243,8 +243,6 @@ channel@23 { fan-controller@a { compatible = "gw,gsc-fan"; - #address-cells = <1>; - #size-cells = <0>; reg = <0x0a>; }; };