From nobody Wed Apr 8 17:33:29 2026 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 0F384C38A02 for ; Fri, 28 Oct 2022 10:29:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229816AbiJ1K3k (ORCPT ); Fri, 28 Oct 2022 06:29:40 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58766 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229744AbiJ1K3h (ORCPT ); Fri, 28 Oct 2022 06:29:37 -0400 Received: from laurent.telenet-ops.be (laurent.telenet-ops.be [IPv6:2a02:1800:110:4::f00:19]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 47FAA5598 for ; Fri, 28 Oct 2022 03:29:30 -0700 (PDT) Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed10:53a:31ee:412:433f]) by laurent.telenet-ops.be with bizsmtp id dNVV2800V5LQXpN01NVVUY; Fri, 28 Oct 2022 12:29:29 +0200 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1ooMJq-001vO6-8p; Fri, 28 Oct 2022 12:10:30 +0200 Received: from geert by rox.of.borg with local (Exim 4.93) (envelope-from ) id 1ooKl1-00GUW4-28; Fri, 28 Oct 2022 10:30:27 +0200 From: Geert Uytterhoeven To: linux-m68k@lists.linux-m68k.org Cc: linux-kernel@vger.kernel.org, Geert Uytterhoeven , Michael Schmitz Subject: [PATCH] m68k: mac: Reword comment using double "in" Date: Fri, 28 Oct 2022 10:30:26 +0200 Message-Id: <0229879ee3e2d8828707d291cddbb89ac18a10c2.1666945731.git.geert@linux-m68k.org> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" People keep on sending (incorrect) patches to remove the second occurrence of the word "in". Reword the comment to stop the inflood. Suggested-by: Michael Schmitz Signed-off-by: Geert Uytterhoeven Reviewed-by: Bagas Sanjaya --- To be queued in the m68k branch for v6.2. arch/m68k/mac/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/m68k/mac/misc.c b/arch/m68k/mac/misc.c index 4fab3479175865d4..c7cb29f0ff016360 100644 --- a/arch/m68k/mac/misc.c +++ b/arch/m68k/mac/misc.c @@ -126,7 +126,7 @@ static void via_rtc_send(__u8 data) =20 reg =3D via1[vBufB] & ~(VIA1B_vRTCClk | VIA1B_vRTCData); =20 - /* The bits of the byte go in in MSB order */ + /* The bits of the byte go into the RTC in MSB order */ =20 for (i =3D 0 ; i < 8 ; i++) { bit =3D data & 0x80? 1 : 0; --=20 2.25.1