* [PATCH] rtc: fix typos in comments
@ 2026-09-04 10:47 Hemanth Selam
2026-09-04 10:49 ` sashiko-bot
0 siblings, 1 reply; 2+ messages in thread
From: Hemanth Selam @ 2026-09-04 10:47 UTC (permalink / raw)
To: Joshua Kinard, Alexandre Belloni, Neil Armstrong, Kevin Hilman,
Jerome Brunet, Martin Blumenstingl
Cc: linux-kernel, linux-rtc, linux-arm-kernel, linux-amlogic
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/drivers/rtc/rtc-meson.c b/drivers/rtc/rtc-meson.c
index 21eceb9e2e13..44bcc0678dee 100644
--- a/drivers/rtc/rtc-meson.c
+++ b/drivers/rtc/rtc-meson.c
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-2.0
/*
- * RTC driver for the interal RTC block in the Amlogic Meson6, Meson8,
+ * RTC driver for the internal RTC block in the Amlogic Meson6, Meson8,
* Meson8b and Meson8m2 SoCs.
*
* The RTC is split in to two parts, the AHB front end and a simple serial
diff --git a/drivers/rtc/rtc-pcf8583.c b/drivers/rtc/rtc-pcf8583.c
index df5e20cbc26c..d0ebf4fd227b 100644
--- a/drivers/rtc/rtc-pcf8583.c
+++ b/drivers/rtc/rtc-pcf8583.c
@@ -7,7 +7,7 @@
*
* Driver for PCF8583 RTC & RAM chip
*
- * Converted to the generic RTC susbsystem by G. Liakhovetski (2006)
+ * Converted to the generic RTC subsystem by G. Liakhovetski (2006)
*/
#include <linux/module.h>
#include <linux/i2c.h>
diff --git a/drivers/rtc/rtc-rk808.c b/drivers/rtc/rtc-rk808.c
index 59b8e9a30fe6..718f19b5911f 100644
--- a/drivers/rtc/rtc-rk808.c
+++ b/drivers/rtc/rtc-rk808.c
@@ -295,7 +295,7 @@ static int rk808_rtc_alarm_irq_enable(struct device *dev,
/*
* We will just handle setting the frequency and make use the framework for
- * reading the periodic interupts.
+ * reading the periodic interrupts.
*
* @freq: Current periodic IRQ freq:
* bit 0: every second
diff --git a/drivers/rtc/rtc-sa1100.c b/drivers/rtc/rtc-sa1100.c
index 26b2f4184ecc..144bb6fd8f6b 100644
--- a/drivers/rtc/rtc-sa1100.c
+++ b/drivers/rtc/rtc-sa1100.c
@@ -228,7 +228,7 @@ int sa1100_rtc_init(struct platform_device *pdev, struct sa1100_rtc *info)
* initialization is unknown and could in principle happen during
* normal processing.
*
- * Notice that clearing bit 1 and 0 is accomplished by writting ONES to
+ * Notice that clearing bit 1 and 0 is accomplished by writing ONES to
* the corresponding bits in RTSR. */
writel_relaxed(RTSR_AL | RTSR_HZ, info->rtsr);
diff --git a/drivers/rtc/rtc-spear.c b/drivers/rtc/rtc-spear.c
index 959acff8faff..74d4aa96826a 100644
--- a/drivers/rtc/rtc-spear.c
+++ b/drivers/rtc/rtc-spear.c
@@ -43,7 +43,7 @@
#define YEARS_UNITS (0xf<<16) /* years units position */
#define YEARS_TENS (0xf<<20) /* years tens position */
#define YEARS_HUNDREDS (0xf<<24) /* years hundereds position */
-#define YEARS_MILLENIUMS (0xf<<28) /* years millenium position */
+#define YEARS_MILLENIUMS (0xf<<28) /* years millennium position */
/* MASK SHIFT TIME_REG & ALARM_TIME_REG*/
#define SECOND_SHIFT 0x00 /* seconds units */
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 */
--
2.48.1
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-09-04 10:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-04 10:47 [PATCH] rtc: fix typos in comments Hemanth Selam
2026-09-04 10:49 ` sashiko-bot
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®