From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mxout2.routing.net (mxout2.routing.net [134.0.28.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 96CDD4084C; Sun, 5 May 2024 16:52:21 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=134.0.28.12 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1714927943; cv=none; b=bmA31/jLZyY9I/qnwaQg4iI2chCtJWuXxcPgbXYPp25ueT22+UHey01xRkyaZGGKacjirroSrSamYO/gwaUZPt2W5p6WMUFXy6CRvK275QyvM0nNybBRw7eay96iWQyN1e/VY8FaZQax4kbiwyCSZEfzhG2JlNzcZDNHPbTdsgI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1714927943; c=relaxed/simple; bh=jjQ9nJQeGTIui5bgLlRc/vV6Y1T5Rd4gjMvkJ2mfyx0=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=r3pd9BtG1pw6KKAKd97bGkfBT8Ul2HDxNB2Fwtnjfh1iZnzJeCbATYvv0MPHgOq9RoI6hA2Zqa58qR0ya8OjDS21XZ/DfxIaYnp8UGqz6Nnf0tBfGZK7GhyGK4x9sa4pQ/4nVRC0g8pg5qZV5bLihfDCSoHm1VR0SoPajIJ9wVk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=fw-web.de; spf=pass smtp.mailfrom=fw-web.de; dkim=pass (1024-bit key) header.d=mailerdienst.de header.i=@mailerdienst.de header.b=YPrHqBk1; arc=none smtp.client-ip=134.0.28.12 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=fw-web.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=fw-web.de Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=mailerdienst.de header.i=@mailerdienst.de header.b="YPrHqBk1" Received: from mxbox3.masterlogin.de (unknown [192.168.10.78]) by mxout2.routing.net (Postfix) with ESMTP id 97F705FC36; Sun, 5 May 2024 16:46:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mailerdienst.de; s=20200217; t=1714927561; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=4WZG70r8O5lFcJ/c3m5E3BoGyd+N0jBB6rsNs5I7w5I=; b=YPrHqBk1k0CDPlMkhHZ81R7pN7OflmVokk9KkwmPSHiqAA8A0skbw3pEfPIG9xbyJTb3W+ RchVYou0Suokrza/FnffpnyIiKGlSdAW/4P06esjT0N/UmX24gZKBWySElJ8RVNvsNE7OO YliBkdw1IHbMRFfMSKHovAjRMdmIIWg= Received: from frank-G5.. (fttx-pool-217.61.153.24.bambit.de [217.61.153.24]) by mxbox3.masterlogin.de (Postfix) with ESMTPSA id A5F9B3604D6; Sun, 5 May 2024 16:46:00 +0000 (UTC) From: Frank Wunderlich To: Rob Herring , Krzysztof Kozlowski , Conor Dooley , Michael Turquette , Stephen Boyd , Pavel Machek , Lee Jones , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Matthias Brugger , AngeloGioacchino Del Regno Cc: Frank Wunderlich , Eric Woudstra , Tianling Shen , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org, linux-leds@vger.kernel.org, netdev@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org Subject: [RFC v1 3/5] dt-bindings: net: mediatek,net: add reset-cells Date: Sun, 5 May 2024 18:45:47 +0200 Message-Id: <20240505164549.65644-4-linux@fw-web.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240505164549.65644-1-linux@fw-web.de> References: <20240505164549.65644-1-linux@fw-web.de> Precedence: bulk X-Mailing-List: linux-clk@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Mail-ID: 5b13f365-7f17-4ad6-9c2a-9ca17ef7465e From: Frank Wunderlich Add missing binding for property used in mt7986a.dtsi. Signed-off-by: Frank Wunderlich --- Documentation/devicetree/bindings/net/mediatek,net.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/devicetree/bindings/net/mediatek,net.yaml b/Documentation/devicetree/bindings/net/mediatek,net.yaml index e74502a0afe8..5214927c0fe8 100644 --- a/Documentation/devicetree/bindings/net/mediatek,net.yaml +++ b/Documentation/devicetree/bindings/net/mediatek,net.yaml @@ -101,6 +101,9 @@ properties: "#address-cells": const: 1 + "#reset-cells": + const: 1 + "#size-cells": const: 0 -- 2.34.1 From mboxrd@z Thu Jan 1 00:00:00 1970 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 918E9C4345F for ; Sun, 5 May 2024 16:46:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:Cc:List-Subscribe: List-Help:List-Post:List-Archive:List-Unsubscribe:List-Id: Content-Transfer-Encoding:MIME-Version:References:In-Reply-To:Message-Id:Date :Subject:To:From:Reply-To:Content-Type:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=4WZG70r8O5lFcJ/c3m5E3BoGyd+N0jBB6rsNs5I7w5I=; b=gfRNcllxCL+VCP ZKfNjvx98gJVEJubwbRkLPV3MS0KFAI9BrEFIGQTADlqCG3QB352eVVKCRnXSXyxWLQ+jOiRff4t1 aKmTigmNMJJI81sdHUyuX2vCBvk0c40WHKWbgB66m+YXv2TcM3xWrbw9PcdYO1nqRcbylj2fKsvP/ l38fA0suPtjlTebxO3PtLokeFYew47jNoNcdfL5GPAwZUtTvjO6i5GpcToFloAehSKSN7qer+/UyS DyM49Y2qwoP6n4iZYXgEQsDVCKXc+l5W4e3Amii44tAFQp5heNRZ5ZZqDK+208NA24QzQM9mIlG1v yzheE86v91P8Y7y4NpBQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1s3f08-00000004psZ-3xvU; Sun, 05 May 2024 16:46:12 +0000 Received: from mxout2.routing.net ([2a03:2900:1:a::b]) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1s3f00-00000004poq-3zyD; Sun, 05 May 2024 16:46:08 +0000 Received: from mxbox3.masterlogin.de (unknown [192.168.10.78]) by mxout2.routing.net (Postfix) with ESMTP id 97F705FC36; Sun, 5 May 2024 16:46:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mailerdienst.de; s=20200217; t=1714927561; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=4WZG70r8O5lFcJ/c3m5E3BoGyd+N0jBB6rsNs5I7w5I=; b=YPrHqBk1k0CDPlMkhHZ81R7pN7OflmVokk9KkwmPSHiqAA8A0skbw3pEfPIG9xbyJTb3W+ RchVYou0Suokrza/FnffpnyIiKGlSdAW/4P06esjT0N/UmX24gZKBWySElJ8RVNvsNE7OO YliBkdw1IHbMRFfMSKHovAjRMdmIIWg= Received: from frank-G5.. (fttx-pool-217.61.153.24.bambit.de [217.61.153.24]) by mxbox3.masterlogin.de (Postfix) with ESMTPSA id A5F9B3604D6; Sun, 5 May 2024 16:46:00 +0000 (UTC) From: Frank Wunderlich To: Rob Herring , Krzysztof Kozlowski , Conor Dooley , Michael Turquette , Stephen Boyd , Pavel Machek , Lee Jones , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Matthias Brugger , AngeloGioacchino Del Regno Subject: [RFC v1 3/5] dt-bindings: net: mediatek,net: add reset-cells Date: Sun, 5 May 2024 18:45:47 +0200 Message-Id: <20240505164549.65644-4-linux@fw-web.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240505164549.65644-1-linux@fw-web.de> References: <20240505164549.65644-1-linux@fw-web.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Mail-ID: 5b13f365-7f17-4ad6-9c2a-9ca17ef7465e X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240505_094605_179061_8B73255C X-CRM114-Status: UNSURE ( 7.97 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-mediatek@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: devicetree@vger.kernel.org, Tianling Shen , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mediatek@lists.infradead.org, linux-arm-kernel@lists.infradead.org, Eric Woudstra , linux-clk@vger.kernel.org, linux-leds@vger.kernel.org Sender: "Linux-mediatek" Errors-To: linux-mediatek-bounces+linux-mediatek=archiver.kernel.org@lists.infradead.org From: Frank Wunderlich Add missing binding for property used in mt7986a.dtsi. Signed-off-by: Frank Wunderlich --- Documentation/devicetree/bindings/net/mediatek,net.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/devicetree/bindings/net/mediatek,net.yaml b/Documentation/devicetree/bindings/net/mediatek,net.yaml index e74502a0afe8..5214927c0fe8 100644 --- a/Documentation/devicetree/bindings/net/mediatek,net.yaml +++ b/Documentation/devicetree/bindings/net/mediatek,net.yaml @@ -101,6 +101,9 @@ properties: "#address-cells": const: 1 + "#reset-cells": + const: 1 + "#size-cells": const: 0 -- 2.34.1 From mboxrd@z Thu Jan 1 00:00:00 1970 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 B7B1BC25B74 for ; Sun, 5 May 2024 16:46:24 +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=JJOfDrV79KuDP4HXh5Gat5ov7pZNZbdIYE4d8KHp+JE=; b=mQ2/r57wrrbKHh qgC0W47fcGZOGrsv4KL1FMuRungzwxQ2fbL9sPEVO/E1QUVYbMTk03uq18UzWOCan7b/oVwuklIcw 8LvxYS3jD6l7ENOg6qYMICfnvX914N2f1TIuu0tBGfqhCs/ROJkeN8QW/y4U1O9ZDYee9vYZ2uwz8 ROLegzjbO8XBltNXkWfAjIxAmPwx6mndxiF7GRs422vdCwU1ngluryxzwYuP+/dx0lOsWlEoXX9S7 rqThSX10X/GRJ/ZfG6BMg2NwPqR5gBtegWsWm1iKsRmroFMIicR0IQEZQLvLpkVLV3Kg0YeOO7Ve3 9bpBPDtFQ8K1JqN1xh3Q==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1s3f08-00000004psD-04ue; Sun, 05 May 2024 16:46:12 +0000 Received: from mxout2.routing.net ([2a03:2900:1:a::b]) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1s3f00-00000004poq-3zyD; Sun, 05 May 2024 16:46:08 +0000 Received: from mxbox3.masterlogin.de (unknown [192.168.10.78]) by mxout2.routing.net (Postfix) with ESMTP id 97F705FC36; Sun, 5 May 2024 16:46:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mailerdienst.de; s=20200217; t=1714927561; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=4WZG70r8O5lFcJ/c3m5E3BoGyd+N0jBB6rsNs5I7w5I=; b=YPrHqBk1k0CDPlMkhHZ81R7pN7OflmVokk9KkwmPSHiqAA8A0skbw3pEfPIG9xbyJTb3W+ RchVYou0Suokrza/FnffpnyIiKGlSdAW/4P06esjT0N/UmX24gZKBWySElJ8RVNvsNE7OO YliBkdw1IHbMRFfMSKHovAjRMdmIIWg= Received: from frank-G5.. (fttx-pool-217.61.153.24.bambit.de [217.61.153.24]) by mxbox3.masterlogin.de (Postfix) with ESMTPSA id A5F9B3604D6; Sun, 5 May 2024 16:46:00 +0000 (UTC) From: Frank Wunderlich To: Rob Herring , Krzysztof Kozlowski , Conor Dooley , Michael Turquette , Stephen Boyd , Pavel Machek , Lee Jones , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Matthias Brugger , AngeloGioacchino Del Regno Cc: Frank Wunderlich , Eric Woudstra , Tianling Shen , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org, linux-leds@vger.kernel.org, netdev@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org Subject: [RFC v1 3/5] dt-bindings: net: mediatek,net: add reset-cells Date: Sun, 5 May 2024 18:45:47 +0200 Message-Id: <20240505164549.65644-4-linux@fw-web.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240505164549.65644-1-linux@fw-web.de> References: <20240505164549.65644-1-linux@fw-web.de> MIME-Version: 1.0 X-Mail-ID: 5b13f365-7f17-4ad6-9c2a-9ca17ef7465e X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240505_094605_179061_8B73255C X-CRM114-Status: UNSURE ( 7.97 ) 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: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org From: Frank Wunderlich Add missing binding for property used in mt7986a.dtsi. Signed-off-by: Frank Wunderlich --- Documentation/devicetree/bindings/net/mediatek,net.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/devicetree/bindings/net/mediatek,net.yaml b/Documentation/devicetree/bindings/net/mediatek,net.yaml index e74502a0afe8..5214927c0fe8 100644 --- a/Documentation/devicetree/bindings/net/mediatek,net.yaml +++ b/Documentation/devicetree/bindings/net/mediatek,net.yaml @@ -101,6 +101,9 @@ properties: "#address-cells": const: 1 + "#reset-cells": + const: 1 + "#size-cells": const: 0 -- 2.34.1 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel