From nobody Mon Apr 6 09:43:16 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 DB5E7C38145 for ; Thu, 8 Sep 2022 13:23:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231965AbiIHNXv (ORCPT ); Thu, 8 Sep 2022 09:23:51 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44428 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232457AbiIHNXe (ORCPT ); Thu, 8 Sep 2022 09:23:34 -0400 Received: from bg4.exmail.qq.com (bg4.exmail.qq.com [43.154.221.58]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4167F11367C; Thu, 8 Sep 2022 06:23:27 -0700 (PDT) X-QQ-mid: bizesmtp73t1662643386twqdhbes Received: from localhost.localdomain ( [182.148.14.0]) by bizesmtp.qq.com (ESMTP) with id ; Thu, 08 Sep 2022 21:23:05 +0800 (CST) X-QQ-SSF: 01000000002000B0C000B00A0000000 X-QQ-FEAT: H7ipuM2k/9rDN4LU8B4FLRvLlR3aaAx/BK5mxwL7QMcJDiqldZpqY4hAHShAS i/tdrYTVuZOZvilWRmVkj94XisSnJ1zvTnp2W5u/Axo6/TTFyn1qjizfWJWhYltJsuZRZNp wF/phUh+TemmhMEgcMpVBW6STiOWXbJ+5wXBLuTHkdxI+Gzk5LNvjgM3QYNlbkuLVlwzush sOwLxXIHuO5Q9dIEe1Q2VaGN3QM/LQ6ztBJspnkiRrkr9WjzI3SJrWNoYdMU6BCyoe7hZsT PfZJsOekSxgspfXKXNgxwtJnWEdFsHviNu96AlAu4WRzsXTxhf5k1dg5nORg71ZWWBjW9Yj 0JV2ELXW522EAIscVWJnUkQ0K2TBoMEPIdzylQXUKga2U7M+WyRkE4wxste2w== X-QQ-GoodBg: 0 From: wangjianli To: a.zummo@towertech.it, alexandre.belloni@bootlin.com Cc: linux-rtc@vger.kernel.org, linux-kernel@vger.kernel.org, wangjianli Subject: [PATCH] drivers/rtc: fix repeated words in comments Date: Thu, 8 Sep 2022 21:22:58 +0800 Message-Id: <20220908132258.43674-1-wangjianli@cdjrlc.com> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:cdjrlc.com:qybglogicsvr:qybglogicsvr7 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Delete the redundant word 'to'. Signed-off-by: wangjianli --- drivers/rtc/rtc-ds1286.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/rtc/rtc-ds1286.c b/drivers/rtc/rtc-ds1286.c index 7acf849d4902..858682f67848 100644 --- a/drivers/rtc/rtc-ds1286.c +++ b/drivers/rtc/rtc-ds1286.c @@ -157,7 +157,7 @@ static int ds1286_read_time(struct device *dev, struct = rtc_time *tm) /* * read RTC once any update in progress is done. The update * can take just over 2ms. We wait 10 to 20ms. There is no need to - * to poll-wait (up to 1s - eeccch) for the falling edge of RTC_UIP. + * poll-wait (up to 1s - eeccch) for the falling edge of RTC_UIP. * If you need to know *exactly* when a second has started, enable * periodic update complete interrupts, (via ioctl) and then * immediately read /dev/rtc which will block until you get the IRQ. --=20 2.36.1