[PATCH] input: sound: Fix comment typos in apbps2 and codecs

harindhu007 posted 1 patch 1 month, 3 weeks ago
drivers/input/serio/apbps2.c      | 2 +-
sound/soc/codecs/da732x.c         | 2 +-
sound/soc/codecs/spdif_receiver.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
[PATCH] input: sound: Fix comment typos in apbps2 and codecs
Posted by harindhu007 1 month, 3 weeks ago
Fix spelling mistakes and minor wording in comments in apbps2, da732x, and spdif_receiver drivers.

Signed-off-by: harindhu007 <harikrs0905@gmail.com>
---
 drivers/input/serio/apbps2.c      | 2 +-
 sound/soc/codecs/da732x.c         | 2 +-
 sound/soc/codecs/spdif_receiver.c | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/input/serio/apbps2.c b/drivers/input/serio/apbps2.c
index b815337be2f4..6bb65f93e052 100644
--- a/drivers/input/serio/apbps2.c
+++ b/drivers/input/serio/apbps2.c
@@ -112,7 +112,7 @@ static int apbps2_open(struct serio *io)
 	while ((ioread32be(&priv->regs->status) & APBPS2_STATUS_DR) && --limit)
 		ioread32be(&priv->regs->data);
 
-	/* Enable reciever and it's interrupt */
+	/* Enable receiver and it's interrupt */
 	iowrite32be(APBPS2_CTRL_RE | APBPS2_CTRL_RI, &priv->regs->ctrl);
 
 	return 0;
diff --git a/sound/soc/codecs/da732x.c b/sound/soc/codecs/da732x.c
index 140e449d3ef4..e8b3ba878d78 100644
--- a/sound/soc/codecs/da732x.c
+++ b/sound/soc/codecs/da732x.c
@@ -569,7 +569,7 @@ static const struct snd_kcontrol_new da732x_snd_controls[] = {
 		       DA732X_EQ_BAND5_SHIFT, DA732X_EQ_VOL_VAL_MAX,
 		       DA732X_INVERT, eq_band_pga_tlv),
 
-	/* Lineout 2 Reciever*/
+	/* Lineout 2 Receiver*/
 	SOC_SINGLE("Lineout 2 Switch", DA732X_REG_LIN2, DA732X_LOUT_MUTE_SHIFT,
 		   DA732X_SWITCH_MAX, DA732X_INVERT),
 	SOC_SINGLE_TLV("Lineout 2 Volume", DA732X_REG_LIN2,
diff --git a/sound/soc/codecs/spdif_receiver.c b/sound/soc/codecs/spdif_receiver.c
index c9766979b1d7..7b4748fc488e 100644
--- a/sound/soc/codecs/spdif_receiver.c
+++ b/sound/soc/codecs/spdif_receiver.c
@@ -1,6 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0-only
 /*
- * ALSA SoC SPDIF DIR (Digital Interface Reciever) driver
+ * ALSA SoC SPDIF DIR (Digital Interface Receiver) driver
  *
  * Based on ALSA SoC SPDIF DIT driver
  *
-- 
2.43.0
Re: [PATCH] input: sound: Fix comment typos in apbps2 and codecs
Posted by Mark Brown 1 month, 3 weeks ago
On Sun, Dec 14, 2025 at 03:20:08AM -0700, harindhu007 wrote:
> Fix spelling mistakes and minor wording in comments in apbps2, da732x, and spdif_receiver drivers.
> 
> Signed-off-by: harindhu007 <harikrs0905@gmail.com>
> ---
>  drivers/input/serio/apbps2.c      | 2 +-
>  sound/soc/codecs/da732x.c         | 2 +-
>  sound/soc/codecs/spdif_receiver.c | 2 +-

Please don't send patches to multiple subsystems in a single patch
unless there is a strong reason to, send one (or more) patch per
subsystem.