From: Geert Uytterhoeven Date: Fri, 28 Oct 2022 08:30:26 +0000 (+0200) Subject: m68k: mac: Reword comment using double "in" X-Git-Tag: v6.2-rc1~199^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=550a998f37b4f9c243501f735aa283c79189ba9b;p=thirdparty%2Fkernel%2Flinux.git m68k: mac: Reword comment using double "in" 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 Link: https://lore.kernel.org/r/0229879ee3e2d8828707d291cddbb89ac18a10c2.1666945731.git.geert@linux-m68k.org --- diff --git a/arch/m68k/mac/misc.c b/arch/m68k/mac/misc.c index 4fab347917586..c7cb29f0ff016 100644 --- a/arch/m68k/mac/misc.c +++ b/arch/m68k/mac/misc.c @@ -126,7 +126,7 @@ static void via_rtc_send(__u8 data) reg = via1[vBufB] & ~(VIA1B_vRTCClk | VIA1B_vRTCData); - /* The bits of the byte go in in MSB order */ + /* The bits of the byte go into the RTC in MSB order */ for (i = 0 ; i < 8 ; i++) { bit = data & 0x80? 1 : 0;