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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5D0FBC433F5 for ; Wed, 13 Apr 2022 16:37:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236895AbiDMQjY (ORCPT ); Wed, 13 Apr 2022 12:39:24 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38604 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235243AbiDMQjX (ORCPT ); Wed, 13 Apr 2022 12:39:23 -0400 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.154.123]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B82345D64A; Wed, 13 Apr 2022 09:36:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1649867816; x=1681403816; h=message-id:date:mime-version:subject:to:cc:references: from:in-reply-to:content-transfer-encoding; bh=SioN7hE4JJ0EbzEEpsQ1nTa8K8QRrunFk5RvqYz6FjE=; b=qSh4h/Gx67jnHDr+Es3enJwuFaRfxEWjXYJXNQiZF0OiiJdsKmZchplY 4IwlaDd18/ya8Iknr5yEzvEfW85WCMAE7/KGhLFD5/Zsr67zy2eq/5NdD rdRMvukT5AgstTjJJsjxPzfS7LbB6iiyRy7YXobpzSdUEFvNiYzAiE+6a 1C576vdmC2QvnEeIflPWJjBKfzRKd+MIAyLFHgUHZ0WvYRstwprLvftw5 pls0FYxfr9MAXNBE7/htEf+kE4ODnPJz/Dw3GGAAPYplrqTFTm9USbwfu 5U9OjvaFW7y/SWICI4TxoNRa1g4Bbc4mFl3L0wCT7P81yME9pv/yPSqPJ w==; X-IronPort-AV: E=Sophos;i="5.90,257,1643698800"; d="scan'208";a="152546254" Received: from smtpout.microchip.com (HELO email.microchip.com) ([198.175.253.82]) by esa4.microchip.iphmx.com with ESMTP/TLS/AES256-SHA256; 13 Apr 2022 09:36:55 -0700 Received: from chn-vm-ex01.mchp-main.com (10.10.85.143) by chn-vm-ex04.mchp-main.com (10.10.85.152) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.17; Wed, 13 Apr 2022 09:36:55 -0700 Received: from [10.12.72.146] (10.10.115.15) by chn-vm-ex01.mchp-main.com (10.10.85.143) with Microsoft SMTP Server id 15.1.2375.17 via Frontend Transport; Wed, 13 Apr 2022 09:36:53 -0700 Message-ID: <703ee79c-3b25-5b1f-dfe1-bfafade468fd@microchip.com> Date: Wed, 13 Apr 2022 18:36:52 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.7.0 Subject: Re: [PATCH v2 1/3] ARM: dts: at91: sama7g5: Swap `rx` and `tx` for `i2c` nodes Content-Language: en-US To: Sergiu Moga , , , , CC: , , , , Tudor Ambarus References: <20220310114553.184763-1-sergiu.moga@microchip.com> <20220310114553.184763-2-sergiu.moga@microchip.com> From: Nicolas Ferre Organization: microchip In-Reply-To: <20220310114553.184763-2-sergiu.moga@microchip.com> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-i2c@vger.kernel.org On 10/03/2022 at 12:45, Sergiu Moga wrote: > Swap `rx` and `tx` for the `dma-names` property of the `i2c` nodes > in order to maintain consistency across Microchip/Atmel SoC files. > > Signed-off-by: Sergiu Moga > Reviewed-by: Tudor Ambarus Acked-by: Nicolas Ferre As it fixes some of the warning in dt schema check in 5.18-rc1, I queue this patch in "fixes" branch for 5.18. Thanks, best regards, Nicolas > --- > arch/arm/boot/dts/sama7g5.dtsi | 18 +++++++++--------- > 1 file changed, 9 insertions(+), 9 deletions(-) > > diff --git a/arch/arm/boot/dts/sama7g5.dtsi b/arch/arm/boot/dts/sama7g5.dtsi > index 4decd3a91a76..f691c8f08d04 100644 > --- a/arch/arm/boot/dts/sama7g5.dtsi > +++ b/arch/arm/boot/dts/sama7g5.dtsi > @@ -601,9 +601,9 @@ i2c1: i2c@600 { > #size-cells = <0>; > clocks = <&pmc PMC_TYPE_PERIPHERAL 39>; > atmel,fifo-size = <32>; > - dmas = <&dma0 AT91_XDMAC_DT_PERID(7)>, > - <&dma0 AT91_XDMAC_DT_PERID(8)>; > - dma-names = "rx", "tx"; > + dmas = <&dma0 AT91_XDMAC_DT_PERID(8)>, > + <&dma0 AT91_XDMAC_DT_PERID(7)>; > + dma-names = "tx", "rx"; > status = "disabled"; > }; > }; > @@ -786,9 +786,9 @@ i2c8: i2c@600 { > #size-cells = <0>; > clocks = <&pmc PMC_TYPE_PERIPHERAL 46>; > atmel,fifo-size = <32>; > - dmas = <&dma0 AT91_XDMAC_DT_PERID(21)>, > - <&dma0 AT91_XDMAC_DT_PERID(22)>; > - dma-names = "rx", "tx"; > + dmas = <&dma0 AT91_XDMAC_DT_PERID(22)>, > + <&dma0 AT91_XDMAC_DT_PERID(21)>; > + dma-names = "tx", "rx"; > status = "disabled"; > }; > }; > @@ -810,9 +810,9 @@ i2c9: i2c@600 { > #size-cells = <0>; > clocks = <&pmc PMC_TYPE_PERIPHERAL 47>; > atmel,fifo-size = <32>; > - dmas = <&dma0 AT91_XDMAC_DT_PERID(23)>, > - <&dma0 AT91_XDMAC_DT_PERID(24)>; > - dma-names = "rx", "tx"; > + dmas = <&dma0 AT91_XDMAC_DT_PERID(24)>, > + <&dma0 AT91_XDMAC_DT_PERID(23)>; > + dma-names = "tx", "rx"; > status = "disabled"; > }; > }; -- Nicolas Ferre 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 159F0C433EF for ; Wed, 13 Apr 2022 16:38:13 +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-Type: Content-Transfer-Encoding:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:In-Reply-To:From:References:CC:To:Subject: MIME-Version:Date:Message-ID:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=mRtNkD+4mhs6ECeG6JoF1PA8Uyi3TStCXBt8o6FbWdc=; b=coyflkeLy7sQ5P za2mkbCFFvsTg8u5TVIRgd8KOm+ClEJSoW09Fl7oKT+T8HD0y+TkHWJIFfG131UoAGXhcFeq6r/bl dPEiOm/sKD5UCAIx8vuurTbfhxDHJVreaKaGZqcvwTJrsqHxo9sb2a7knfzIC97KZ1AaXNwz/oJRy nHjx9a59eNWEEJsNQDU+I87qJuTL7M87PBha2X0wJwmNMx5YL+vOeTBtdoBw0ZkgNAXfSNpSMIxgp ndfCD8aNxzASz7XiyzCoEzsp4ukwXD7TJKkMfCouSozBoHHNZBP2MLYiEzoByxpYZcDrUoGTs7MUr +fHQkgM5XQolwqIkTV8w==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nefzO-001llv-2u; Wed, 13 Apr 2022 16:37:06 +0000 Received: from esa.microchip.iphmx.com ([68.232.154.123]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1nefzJ-001lka-Sq for linux-arm-kernel@lists.infradead.org; Wed, 13 Apr 2022 16:37:04 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1649867821; x=1681403821; h=message-id:date:mime-version:subject:to:cc:references: from:in-reply-to:content-transfer-encoding; bh=SioN7hE4JJ0EbzEEpsQ1nTa8K8QRrunFk5RvqYz6FjE=; b=bSbVLyTuotf4lvq7TjAB0/Iys+b58Qcz4EhllggSye21cFMngbQoL1PF 7YHa4Wu1qwWZI5VTJUhTcK8pStJn4RXcIk1SBjhDcNX4tZPNLUdjq3QSR dfV5vl9CCxp93C0IOwF1cFv6dznKAU49XNLd6CXyILVo7WVFgYkvguZOt EY26Gne3qltVuTgjriCOV05ZM9vYCfNRAgiTbuhj3OCt2Td4+2IsXcJUA mkiTPfFFAEbN47vUZMIRx6/0pKQobPKYNcj6eBRNJLcWRUw05A3M8s1zl FcaG+h8H7Fh41OgjJHuCJFLuvN8DPErBSSApJscSW9GChwy9zq47nh3z3 w==; X-IronPort-AV: E=Sophos;i="5.90,257,1643698800"; d="scan'208";a="152546254" Received: from smtpout.microchip.com (HELO email.microchip.com) ([198.175.253.82]) by esa4.microchip.iphmx.com with ESMTP/TLS/AES256-SHA256; 13 Apr 2022 09:36:55 -0700 Received: from chn-vm-ex01.mchp-main.com (10.10.85.143) by chn-vm-ex04.mchp-main.com (10.10.85.152) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.17; Wed, 13 Apr 2022 09:36:55 -0700 Received: from [10.12.72.146] (10.10.115.15) by chn-vm-ex01.mchp-main.com (10.10.85.143) with Microsoft SMTP Server id 15.1.2375.17 via Frontend Transport; Wed, 13 Apr 2022 09:36:53 -0700 Message-ID: <703ee79c-3b25-5b1f-dfe1-bfafade468fd@microchip.com> Date: Wed, 13 Apr 2022 18:36:52 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.7.0 Subject: Re: [PATCH v2 1/3] ARM: dts: at91: sama7g5: Swap `rx` and `tx` for `i2c` nodes Content-Language: en-US To: Sergiu Moga , , , , CC: , , , , Tudor Ambarus References: <20220310114553.184763-1-sergiu.moga@microchip.com> <20220310114553.184763-2-sergiu.moga@microchip.com> From: Nicolas Ferre Organization: microchip In-Reply-To: <20220310114553.184763-2-sergiu.moga@microchip.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220413_093702_113770_534316F1 X-CRM114-Status: GOOD ( 13.57 ) 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-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On 10/03/2022 at 12:45, Sergiu Moga wrote: > Swap `rx` and `tx` for the `dma-names` property of the `i2c` nodes > in order to maintain consistency across Microchip/Atmel SoC files. > > Signed-off-by: Sergiu Moga > Reviewed-by: Tudor Ambarus Acked-by: Nicolas Ferre As it fixes some of the warning in dt schema check in 5.18-rc1, I queue this patch in "fixes" branch for 5.18. Thanks, best regards, Nicolas > --- > arch/arm/boot/dts/sama7g5.dtsi | 18 +++++++++--------- > 1 file changed, 9 insertions(+), 9 deletions(-) > > diff --git a/arch/arm/boot/dts/sama7g5.dtsi b/arch/arm/boot/dts/sama7g5.dtsi > index 4decd3a91a76..f691c8f08d04 100644 > --- a/arch/arm/boot/dts/sama7g5.dtsi > +++ b/arch/arm/boot/dts/sama7g5.dtsi > @@ -601,9 +601,9 @@ i2c1: i2c@600 { > #size-cells = <0>; > clocks = <&pmc PMC_TYPE_PERIPHERAL 39>; > atmel,fifo-size = <32>; > - dmas = <&dma0 AT91_XDMAC_DT_PERID(7)>, > - <&dma0 AT91_XDMAC_DT_PERID(8)>; > - dma-names = "rx", "tx"; > + dmas = <&dma0 AT91_XDMAC_DT_PERID(8)>, > + <&dma0 AT91_XDMAC_DT_PERID(7)>; > + dma-names = "tx", "rx"; > status = "disabled"; > }; > }; > @@ -786,9 +786,9 @@ i2c8: i2c@600 { > #size-cells = <0>; > clocks = <&pmc PMC_TYPE_PERIPHERAL 46>; > atmel,fifo-size = <32>; > - dmas = <&dma0 AT91_XDMAC_DT_PERID(21)>, > - <&dma0 AT91_XDMAC_DT_PERID(22)>; > - dma-names = "rx", "tx"; > + dmas = <&dma0 AT91_XDMAC_DT_PERID(22)>, > + <&dma0 AT91_XDMAC_DT_PERID(21)>; > + dma-names = "tx", "rx"; > status = "disabled"; > }; > }; > @@ -810,9 +810,9 @@ i2c9: i2c@600 { > #size-cells = <0>; > clocks = <&pmc PMC_TYPE_PERIPHERAL 47>; > atmel,fifo-size = <32>; > - dmas = <&dma0 AT91_XDMAC_DT_PERID(23)>, > - <&dma0 AT91_XDMAC_DT_PERID(24)>; > - dma-names = "rx", "tx"; > + dmas = <&dma0 AT91_XDMAC_DT_PERID(24)>, > + <&dma0 AT91_XDMAC_DT_PERID(23)>; > + dma-names = "tx", "rx"; > status = "disabled"; > }; > }; -- Nicolas Ferre _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel