From: Joshua Kinard <linux@kumba.dev>
To: Hemanth Selam <hemanth.selam@gmail.com>,
Alexandre Belloni <alexandre.belloni@bootlin.com>,
Neil Armstrong <neil.armstrong@linaro.org>,
Kevin Hilman <khilman@baylibre.com>,
Jerome Brunet <jbrunet@baylibre.com>,
Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Cc: linux-kernel@vger.kernel.org, linux-rtc@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-amlogic@lists.infradead.org
Subject: Re: [PATCH] rtc: fix typos in comments
Date: Fri, 18 Sep 2026 15:21:48 -0400 [thread overview]
Message-ID: <c4a61df3-6786-446c-96cf-ebff064b9c46@kumba.dev> (raw)
In-Reply-To: <20260904104758.23905-1-hemanth.selam@gmail.com>
On 09/04/2026 06:47, Hemanth Selam wrote:
> Fix typos in comments, reported by scripts/checkpatch.pl using the
> misspelling list in scripts/spelling.txt. Only touches comments, no code
> changes.
>
> Assisted-by: Cursor:claude-opus-5
> Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
> ---
> drivers/rtc/rtc-ds1685.c | 6 +++---
> drivers/rtc/rtc-meson.c | 2 +-
> drivers/rtc/rtc-pcf8583.c | 2 +-
> drivers/rtc/rtc-rk808.c | 2 +-
> drivers/rtc/rtc-sa1100.c | 2 +-
> drivers/rtc/rtc-spear.c | 2 +-
> include/linux/rtc/ds1685.h | 4 ++--
> 7 files changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/rtc/rtc-ds1685.c b/drivers/rtc/rtc-ds1685.c
> index 5fc8e36b1abf..beb987b76f24 100644
> --- a/drivers/rtc/rtc-ds1685.c
> +++ b/drivers/rtc/rtc-ds1685.c
> @@ -1231,7 +1231,7 @@ ds1685_rtc_probe(struct platform_device *pdev)
> dev_warn(&pdev->dev,
> "Main battery is exhausted! RTC may be invalid!\n");
>
> - /* Check the auxillary battery. It is optional. */
> + /* Check the auxiliary battery. It is optional. */
> if (!(rtc->read(rtc, RTC_EXT_CTRL_4A) & RTC_CTRL_4A_VRT2))
> dev_warn(&pdev->dev,
> "Aux battery is exhausted or not available.\n");
> @@ -1395,7 +1395,7 @@ ds1685_rtc_poweroff(struct platform_device *pdev)
> rtc->write(rtc, RTC_CTRL_A, ctrla);
>
> /*
> - * Read Control 4A and check the status of the auxillary
> + * Read Control 4A and check the status of the auxiliary
> * battery. This must be present and working (VRT2 = 1)
> * for wakeup and kickstart functionality to be useful.
> */
> @@ -1407,7 +1407,7 @@ ds1685_rtc_poweroff(struct platform_device *pdev)
> rtc->write(rtc, RTC_EXT_CTRL_4A, ctrl4a);
>
> /*
> - * The auxillary battery is present and working.
> + * The auxiliary battery is present and working.
> * Enable extended functions (ABE=1), enable
> * wake-up (WIE=1), and enable kickstart (KSE=1)
> * in Control 4B.
> diff --git a/include/linux/rtc/ds1685.h b/include/linux/rtc/ds1685.h
> index 8ec0ebfaef04..55d3edc7e972 100644
> --- a/include/linux/rtc/ds1685.h
> +++ b/include/linux/rtc/ds1685.h
> @@ -200,7 +200,7 @@ struct ds1685_rtc_platform_data {
> * access to the extended NV-SRAM by automatically incrementing the address
> * register when they are read from or written to.
> */
> -#define RTC_CTRL_4A_VRT2 BIT(7) /* Auxillary Battery Status */
> +#define RTC_CTRL_4A_VRT2 BIT(7) /* Auxiliary Battery Status */
> #define RTC_CTRL_4A_INCR BIT(6) /* Increment-in-Progress Status */
> #define RTC_CTRL_4A_PAB BIT(3) /* Power-Active Bar Control */
> #define RTC_CTRL_4A_RF BIT(2) /* RAM-Clear Flag */
> @@ -215,7 +215,7 @@ struct ds1685_rtc_platform_data {
> /*
> * Bit names in Extended Control Register 4B.
> */
> -#define RTC_CTRL_4B_ABE BIT(7) /* Auxillary Battery Enable */
> +#define RTC_CTRL_4B_ABE BIT(7) /* Auxiliary Battery Enable */
> #define RTC_CTRL_4B_E32K BIT(6) /* Enable 32.768Hz on SQW Pin */
> #define RTC_CTRL_4B_CS BIT(5) /* Crystal Select */
> #define RTC_CTRL_4B_RCE BIT(4) /* RAM Clear-Enable */
Huh, I am honestly now wondering how I made such simple typos all those
years ago, and why it took an AI agent to find them. At least I was
consistent in making them, so that's gotta amount to something.
Thanks!
Acked-by: Joshua Kinard <linux@kumba.dev>
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
prev parent reply other threads:[~2026-09-18 19:22 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-04 10:47 Hemanth Selam
2026-09-04 10:49 ` sashiko-bot
2026-09-18 19:21 ` Joshua Kinard [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=c4a61df3-6786-446c-96cf-ebff064b9c46@kumba.dev \
--to=linux@kumba.dev \
--cc=alexandre.belloni@bootlin.com \
--cc=hemanth.selam@gmail.com \
--cc=jbrunet@baylibre.com \
--cc=khilman@baylibre.com \
--cc=linux-amlogic@lists.infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rtc@vger.kernel.org \
--cc=martin.blumenstingl@googlemail.com \
--cc=neil.armstrong@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®