From nobody Fri Apr 3 06:44:48 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 25C31C6FA82 for ; Thu, 15 Sep 2022 01:47:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229936AbiIOBry (ORCPT ); Wed, 14 Sep 2022 21:47:54 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35860 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229653AbiIOBrw (ORCPT ); Wed, 14 Sep 2022 21:47:52 -0400 Received: from ssh248.corpemail.net (ssh248.corpemail.net [210.51.61.248]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 11A3B8E479 for ; Wed, 14 Sep 2022 18:47:50 -0700 (PDT) Received: from ([60.208.111.195]) by ssh248.corpemail.net ((D)) with ASMTP (SSL) id JAK00145; Thu, 15 Sep 2022 09:47:45 +0800 Received: from localhost.localdomain (10.200.104.82) by jtjnmail201612.home.langchao.com (10.100.2.12) with Microsoft SMTP Server id 15.1.2507.12; Thu, 15 Sep 2022 09:47:45 +0800 From: Deming Wang To: , CC: , , Deming Wang Subject: [PATCH] m68k: fix the comments of via_rtc_send Date: Wed, 14 Sep 2022 21:47:37 -0400 Message-ID: <20220915014737.1620-1-wangdeming@inspur.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Originating-IP: [10.200.104.82] tUid: 2022915094745daf89ab0da9129a5b7c63f867815d8d2 X-Abuse-Reports-To: service@corp-email.com Abuse-Reports-To: service@corp-email.com X-Complaints-To: service@corp-email.com X-Report-Abuse-To: service@corp-email.com Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" remove the double word of 'in'. Signed-off-by: Deming Wang --- 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 4fab34791758..29a4cb46af01 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 in MSB order */ =20 for (i =3D 0 ; i < 8 ; i++) { bit =3D data & 0x80? 1 : 0; --=20 2.27.0