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 26A0CC83F33 for ; Mon, 4 Sep 2023 19:35: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: List-Subscribe:List-Help:List-Post:List-Archive:List-Unsubscribe:List-Id: In-Reply-To:MIME-Version:References:Message-ID:Subject:Cc:To:From:Date: Reply-To:Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date :Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=v8XXdb2pbW+f5k6LSesh2Vy7w835a+rtstblqnDsZ+o=; b=CkNcGo7BTyDH/MYsZGG29R/sxT 7btxq/qA49OnSL2sSKW4m/0O7h176rc+3BT59SntyjG2beJOUHamjawo7R0bwKPYPxB0+r31vpngq ZU45oqw1bmDjdq76wifj3hUXIZAbG9lINWVTSZFCNEpxQWKUgBmMScw8DuaBdAE8pKVJMXREKwMMh S1tr7Oz48rQNQ7LklsmV0q2LT0cueQvKLg1/wDKSbvpKkAlIoUiAUX4+ybRNttrvr58Sxef1xgQiC d6F/hvzFp/J58Hm+gOCzm4UySmAI1vH5p3APFvWNpEO4zD51i1Jh4uXc9X6xXndh4Vw+SXISTlWUv EL7iuvKg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1qdFLZ-004hnw-1I; Mon, 04 Sep 2023 19:34:53 +0000 Received: from sin.source.kernel.org ([2604:1380:40e1:4800::1]) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1qdFLW-004hnW-1O for linux-arm-kernel@lists.infradead.org; Mon, 04 Sep 2023 19:34:51 +0000 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by sin.source.kernel.org (Postfix) with ESMTPS id ABAC3CE0FC0; Mon, 4 Sep 2023 19:34:48 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C58D5C433C9; Mon, 4 Sep 2023 19:34:45 +0000 (UTC) Date: Mon, 4 Sep 2023 15:34:43 -0400 From: William Breathitt Gray To: Fabrice Gasnier Cc: lee@kernel.org, alexandre.torgue@foss.st.com, linux-iio@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 5/8] counter: stm32-timer-cnt: rename quadrature signal Message-ID: References: <20230829134029.2402868-1-fabrice.gasnier@foss.st.com> <20230829134029.2402868-6-fabrice.gasnier@foss.st.com> MIME-Version: 1.0 In-Reply-To: <20230829134029.2402868-6-fabrice.gasnier@foss.st.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230904_123450_674844_4553B380 X-CRM114-Status: GOOD ( 19.19 ) 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: multipart/mixed; boundary="===============6776217533322949801==" Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org --===============6776217533322949801== Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="NMsfRSzMtjBFjRBJ" Content-Disposition: inline --NMsfRSzMtjBFjRBJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 29, 2023 at 03:40:26PM +0200, Fabrice Gasnier wrote: > Rename "Channel 1 Quadrature B", as it corresponds to timer input ch2. > I suspect it referred to the (unique) counter earlier, but the physical > input really is CH2. >=20 > Signed-off-by: Fabrice Gasnier > --- > drivers/counter/stm32-timer-cnt.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/drivers/counter/stm32-timer-cnt.c b/drivers/counter/stm32-ti= mer-cnt.c > index 6206d2dc3d47..eae851f6db2c 100644 > --- a/drivers/counter/stm32-timer-cnt.c > +++ b/drivers/counter/stm32-timer-cnt.c > @@ -283,7 +283,7 @@ static struct counter_signal stm32_signals[] =3D { > }, > { > .id =3D 1, > - .name =3D "Channel 1 Quadrature B" > + .name =3D "Channel 2 Quadrature B" > } > }; > =20 > --=20 > 2.25.1 >=20 If these signals are going to be named after their channels, then I prefer we just remove the "Quadrature A" and "Quadrature B" conventions and leave the signals named "Channel 1" and "Channel 2" respectively. William Breathitt Gray --NMsfRSzMtjBFjRBJ Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQSNN83d4NIlKPjon7a1SFbKvhIjKwUCZPYxUwAKCRC1SFbKvhIj KwlZAQC5qqbW6yuzMVoOIa81HPFtxG55puiquwVLPEVVevubkgD/WDPQp5tCGI/7 SRz862UcpUqXwnje45wjxncgmbRXLgQ= =+OS/ -----END PGP SIGNATURE----- --NMsfRSzMtjBFjRBJ-- --===============6776217533322949801== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel --===============6776217533322949801==--