* [PATCH v2 0/3] cirrus: fix typos in comments
@ 2026-09-07 4:53 Hemanth Selam
2026-09-07 4:53 ` [PATCH v2 1/3] ASoC: codecs: " Hemanth Selam
` (5 more replies)
0 siblings, 6 replies; 8+ messages in thread
From: Hemanth Selam @ 2026-09-07 4:53 UTC (permalink / raw)
To: Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai,
Simon Trimmer, Charles Keepax, Richard Fitzgerald, Lee Jones
Cc: patches, linux-sound, linux-kernel, mfd
This is v2 of the spelling fixes for this tree.
Changes since v1:
The mfd patch now carries the driver name and a capitalised
description in its subject, to match the subsystem convention.
Only comments change; no code is touched.
drivers/firmware/cirrus/cs_dsp.c | 2 +-
drivers/mfd/wm831x-auxadc.c | 2 +-
sound/soc/codecs/wm8962.c | 4 ++--
sound/soc/codecs/wm8996.c | 2 +-
sound/soc/codecs/wm_hubs.c | 2 +-
5 files changed, 6 insertions(+), 6 deletions(-)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2 1/3] ASoC: codecs: fix typos in comments
2026-09-07 4:53 [PATCH v2 0/3] cirrus: fix typos in comments Hemanth Selam
@ 2026-09-07 4:53 ` Hemanth Selam
2026-09-07 4:53 ` [PATCH v2 2/3] firmware: cirrus: fix typo "upto" in comment Hemanth Selam
` (4 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Hemanth Selam @ 2026-09-07 4:53 UTC (permalink / raw)
To: Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai,
Simon Trimmer, Charles Keepax, Richard Fitzgerald, Lee Jones
Cc: patches, linux-sound, linux-kernel, mfd
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>
---
sound/soc/codecs/wm8962.c | 4 ++--
sound/soc/codecs/wm8996.c | 2 +-
sound/soc/codecs/wm_hubs.c | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c
index 8a9598161b35..af4716051220 100644
--- a/sound/soc/codecs/wm8962.c
+++ b/sound/soc/codecs/wm8962.c
@@ -3430,7 +3430,7 @@ static int wm8962_gpio_request(struct gpio_chip *chip, unsigned offset)
/* The WM8962 GPIOs aren't linearly numbered. For simplicity
* we export linear numbers and error out if the unsupported
- * ones are requsted.
+ * ones are requested.
*/
switch (offset + 1) {
case 2:
@@ -3813,7 +3813,7 @@ static int wm8962_i2c_probe(struct i2c_client *i2c)
regmap_update_bits(wm8962->regmap, WM8962_EQ1,
WM8962_EQ_SHARED_COEFF, 0);
- /* Don't debouce interrupts so we don't need SYSCLK */
+ /* Don't debounce interrupts so we don't need SYSCLK */
regmap_update_bits(wm8962->regmap, WM8962_IRQ_DEBOUNCE,
WM8962_FLL_LOCK_DB | WM8962_PLL3_LOCK_DB |
WM8962_PLL2_LOCK_DB | WM8962_TEMP_SHUT_DB,
diff --git a/sound/soc/codecs/wm8996.c b/sound/soc/codecs/wm8996.c
index dface555f928..e7a20ce39940 100644
--- a/sound/soc/codecs/wm8996.c
+++ b/sound/soc/codecs/wm8996.c
@@ -2106,7 +2106,7 @@ static int wm8996_set_fll(struct snd_soc_component *component, int fll_id, int s
if (i2c->irq)
timeout *= 10;
else
- /* ensure timeout of atleast 1 jiffies */
+ /* ensure timeout of at least 1 jiffies */
timeout = (timeout/2) ? : 1;
for (retry = 0; retry < 10; retry++) {
diff --git a/sound/soc/codecs/wm_hubs.c b/sound/soc/codecs/wm_hubs.c
index f80dfc488e3c..019940589e51 100644
--- a/sound/soc/codecs/wm_hubs.c
+++ b/sound/soc/codecs/wm_hubs.c
@@ -338,7 +338,7 @@ static int wm8993_put_dc_servo(struct snd_kcontrol *kcontrol,
ret = snd_soc_put_volsw(kcontrol, ucontrol);
/* If we're applying an offset correction then updating the
- * callibration would be likely to introduce further offsets. */
+ * calibration would be likely to introduce further offsets. */
if (hubs->dcs_codes_l || hubs->dcs_codes_r || hubs->no_series_update)
return ret;
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2 2/3] firmware: cirrus: fix typo "upto" in comment
2026-09-07 4:53 [PATCH v2 0/3] cirrus: fix typos in comments Hemanth Selam
2026-09-07 4:53 ` [PATCH v2 1/3] ASoC: codecs: " Hemanth Selam
@ 2026-09-07 4:53 ` Hemanth Selam
2026-09-07 4:53 ` [PATCH v2 3/3] mfd: wm831x: Fix typo "convertor" " Hemanth Selam
` (3 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Hemanth Selam @ 2026-09-07 4:53 UTC (permalink / raw)
To: Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai,
Simon Trimmer, Charles Keepax, Richard Fitzgerald, Lee Jones
Cc: patches, linux-sound, linux-kernel, mfd
Correct "upto" to "up to", 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/firmware/cirrus/cs_dsp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/firmware/cirrus/cs_dsp.c b/drivers/firmware/cirrus/cs_dsp.c
index bb93b24c659d..04015280ac5d 100644
--- a/drivers/firmware/cirrus/cs_dsp.c
+++ b/drivers/firmware/cirrus/cs_dsp.c
@@ -3505,7 +3505,7 @@ EXPORT_SYMBOL_NS_GPL(cs_dsp_chunk_write, "FW_CS_DSP");
*
* As cs_dsp_chunk_write only writes data when a whole DSP word is ready to
* be written out it is possible that some data will remain in the cache, this
- * function will pad that data with zeros upto a whole DSP word and write out.
+ * function will pad that data with zeros up to a whole DSP word and write out.
*
* Return: Zero for success, a negative number on error.
*/
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2 3/3] mfd: wm831x: Fix typo "convertor" in comment
2026-09-07 4:53 [PATCH v2 0/3] cirrus: fix typos in comments Hemanth Selam
2026-09-07 4:53 ` [PATCH v2 1/3] ASoC: codecs: " Hemanth Selam
2026-09-07 4:53 ` [PATCH v2 2/3] firmware: cirrus: fix typo "upto" in comment Hemanth Selam
@ 2026-09-07 4:53 ` Hemanth Selam
2026-09-09 16:08 ` (subset) " Lee Jones
2026-09-07 10:37 ` [PATCH v2 0/3] cirrus: fix typos in comments Charles Keepax
` (2 subsequent siblings)
5 siblings, 1 reply; 8+ messages in thread
From: Hemanth Selam @ 2026-09-07 4:53 UTC (permalink / raw)
To: Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai,
Simon Trimmer, Charles Keepax, Richard Fitzgerald, Lee Jones
Cc: patches, linux-sound, linux-kernel, mfd
Correct "convertor" to "converter", reported by scripts/checkpatch.pl
using the misspelling list in scripts/spelling.txt. Only touches a
comment, no code changes.
Since v1 the subject carries the driver name and a capitalised
description, to match the MFD subsystem convention.
Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---
drivers/mfd/wm831x-auxadc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mfd/wm831x-auxadc.c b/drivers/mfd/wm831x-auxadc.c
index 744e1d161c5a..6280d4f38981 100644
--- a/drivers/mfd/wm831x-auxadc.c
+++ b/drivers/mfd/wm831x-auxadc.c
@@ -132,7 +132,7 @@ static irqreturn_t wm831x_auxadc_irq(int irq, void *irq_data)
1 << input, 0);
wm831x->auxadc_active &= ~(1 << input);
- /* Turn off the entire convertor if idle */
+ /* Turn off the entire converter if idle */
if (!wm831x->auxadc_active)
wm831x_reg_write(wm831x, WM831X_AUXADC_CONTROL, 0);
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 0/3] cirrus: fix typos in comments
2026-09-07 4:53 [PATCH v2 0/3] cirrus: fix typos in comments Hemanth Selam
` (2 preceding siblings ...)
2026-09-07 4:53 ` [PATCH v2 3/3] mfd: wm831x: Fix typo "convertor" " Hemanth Selam
@ 2026-09-07 10:37 ` Charles Keepax
2026-09-07 14:11 ` Mark Brown
2026-09-07 21:46 ` (subset) " Mark Brown
5 siblings, 0 replies; 8+ messages in thread
From: Charles Keepax @ 2026-09-07 10:37 UTC (permalink / raw)
To: Hemanth Selam
Cc: Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai,
Simon Trimmer, Richard Fitzgerald, Lee Jones, patches,
linux-sound, linux-kernel, mfd
On Mon, Sep 07, 2026 at 10:23:28AM +0530, Hemanth Selam wrote:
> This is v2 of the spelling fixes for this tree.
>
> Changes since v1:
> The mfd patch now carries the driver name and a capitalised
> description in its subject, to match the subsystem convention.
>
> Only comments change; no code is touched.
>
> drivers/firmware/cirrus/cs_dsp.c | 2 +-
> drivers/mfd/wm831x-auxadc.c | 2 +-
> sound/soc/codecs/wm8962.c | 4 ++--
> sound/soc/codecs/wm8996.c | 2 +-
> sound/soc/codecs/wm_hubs.c | 2 +-
> 5 files changed, 6 insertions(+), 6 deletions(-)
>
Reviewed-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Thanks,
Charles
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 0/3] cirrus: fix typos in comments
2026-09-07 4:53 [PATCH v2 0/3] cirrus: fix typos in comments Hemanth Selam
` (3 preceding siblings ...)
2026-09-07 10:37 ` [PATCH v2 0/3] cirrus: fix typos in comments Charles Keepax
@ 2026-09-07 14:11 ` Mark Brown
2026-09-07 21:46 ` (subset) " Mark Brown
5 siblings, 0 replies; 8+ messages in thread
From: Mark Brown @ 2026-09-07 14:11 UTC (permalink / raw)
To: Hemanth Selam
Cc: Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Simon Trimmer,
Charles Keepax, Richard Fitzgerald, Lee Jones, patches,
linux-sound, linux-kernel, mfd
[-- Attachment #1: Type: text/plain, Size: 480 bytes --]
On Mon, Sep 07, 2026 at 10:23:28AM +0530, Hemanth Selam wrote:
> drivers/firmware/cirrus/cs_dsp.c | 2 +-
> drivers/mfd/wm831x-auxadc.c | 2 +-
> sound/soc/codecs/wm8962.c | 4 ++--
> sound/soc/codecs/wm8996.c | 2 +-
> sound/soc/codecs/wm_hubs.c | 2 +-
Please don't send patches for different subsystems as part of a series
if there is no dependency or other interaction, it just makes working
out how things are going to be applied more complicated.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: (subset) [PATCH v2 0/3] cirrus: fix typos in comments
2026-09-07 4:53 [PATCH v2 0/3] cirrus: fix typos in comments Hemanth Selam
` (4 preceding siblings ...)
2026-09-07 14:11 ` Mark Brown
@ 2026-09-07 21:46 ` Mark Brown
5 siblings, 0 replies; 8+ messages in thread
From: Mark Brown @ 2026-09-07 21:46 UTC (permalink / raw)
To: Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Simon Trimmer,
Charles Keepax, Richard Fitzgerald, Lee Jones, Hemanth Selam
Cc: patches, linux-sound, linux-kernel, mfd
On Mon, 07 Sep 2026 10:23:28 +0530, Hemanth Selam wrote:
> cirrus: fix typos in comments
>
> This is v2 of the spelling fixes for this tree.
>
> Changes since v1:
> The mfd patch now carries the driver name and a capitalised
> description in its subject, to match the subsystem convention.
>
> [...]
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-7.4
Thanks!
[1/3] ASoC: codecs: fix typos in comments
https://git.kernel.org/broonie/sound/c/201af7ba51a1
[2/3] firmware: cirrus: fix typo "upto" in comment
https://git.kernel.org/broonie/sound/c/20a812a1f664
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: (subset) [PATCH v2 3/3] mfd: wm831x: Fix typo "convertor" in comment
2026-09-07 4:53 ` [PATCH v2 3/3] mfd: wm831x: Fix typo "convertor" " Hemanth Selam
@ 2026-09-09 16:08 ` Lee Jones
0 siblings, 0 replies; 8+ messages in thread
From: Lee Jones @ 2026-09-09 16:08 UTC (permalink / raw)
To: Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai,
Simon Trimmer, Charles Keepax, Richard Fitzgerald, Lee Jones,
Hemanth Selam
Cc: patches, linux-sound, linux-kernel, mfd
On Mon, 07 Sep 2026 10:23:31 +0530, Hemanth Selam wrote:
> Correct "convertor" to "converter", reported by scripts/checkpatch.pl
> using the misspelling list in scripts/spelling.txt. Only touches a
> comment, no code changes.
>
> Since v1 the subject carries the driver name and a capitalised
> description, to match the MFD subsystem convention.
>
> [...]
Applied, thanks!
[3/3] mfd: wm831x: Fix typo "convertor" in comment
commit: 6b59fafe285338afd1dabbefc9732cfc7de23ece
--
Lee Jones [李琼斯]
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-09-09 16:08 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-07 4:53 [PATCH v2 0/3] cirrus: fix typos in comments Hemanth Selam
2026-09-07 4:53 ` [PATCH v2 1/3] ASoC: codecs: " Hemanth Selam
2026-09-07 4:53 ` [PATCH v2 2/3] firmware: cirrus: fix typo "upto" in comment Hemanth Selam
2026-09-07 4:53 ` [PATCH v2 3/3] mfd: wm831x: Fix typo "convertor" " Hemanth Selam
2026-09-09 16:08 ` (subset) " Lee Jones
2026-09-07 10:37 ` [PATCH v2 0/3] cirrus: fix typos in comments Charles Keepax
2026-09-07 14:11 ` Mark Brown
2026-09-07 21:46 ` (subset) " Mark Brown
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®