linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ASoC: tegra: Fix spelling mistake "fliter" -> "filter"
@ 2022-11-08 11:13 Colin Ian King
  2022-11-08 14:22 ` Thierry Reding
  2022-11-10 21:36 ` Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Colin Ian King @ 2022-11-08 11:13 UTC (permalink / raw)
  To: Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai,
	Thierry Reding, Jonathan Hunter, Sameer Pujar, alsa-devel,
	linux-tegra
  Cc: kernel-janitors, linux-kernel

There is a spelling mistake in struct member fliter_structure.
Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 sound/soc/tegra/tegra210_mbdrc.c | 4 ++--
 sound/soc/tegra/tegra210_mbdrc.h | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sound/soc/tegra/tegra210_mbdrc.c b/sound/soc/tegra/tegra210_mbdrc.c
index d786daa6aba6..eeacb1220268 100644
--- a/sound/soc/tegra/tegra210_mbdrc.c
+++ b/sound/soc/tegra/tegra210_mbdrc.c
@@ -54,7 +54,7 @@ static const struct tegra210_mbdrc_config mbdrc_init_config = {
 	.mode			= 0, /* Bypass */
 	.rms_off		= 48,
 	.peak_rms_mode		= 1, /* PEAK */
-	.fliter_structure	= 0, /* All-pass tree */
+	.filter_structure	= 0, /* All-pass tree */
 	.shift_ctrl		= 30,
 	.frame_size		= 32,
 	.channel_mask		= 0x3,
@@ -819,7 +819,7 @@ int tegra210_mbdrc_component_init(struct snd_soc_component *cmpnt)
 
 	regmap_update_bits(ope->mbdrc_regmap, TEGRA210_MBDRC_CFG,
 		TEGRA210_MBDRC_CFG_FILTER_STRUCTURE_MASK,
-		conf->fliter_structure <<
+		conf->filter_structure <<
 		TEGRA210_MBDRC_CFG_FILTER_STRUCTURE_SHIFT);
 
 	regmap_update_bits(ope->mbdrc_regmap, TEGRA210_MBDRC_CFG,
diff --git a/sound/soc/tegra/tegra210_mbdrc.h b/sound/soc/tegra/tegra210_mbdrc.h
index 4c48da0e1dea..76e443a7934e 100644
--- a/sound/soc/tegra/tegra210_mbdrc.h
+++ b/sound/soc/tegra/tegra210_mbdrc.h
@@ -199,7 +199,7 @@ struct tegra210_mbdrc_config {
 	unsigned int mode;
 	unsigned int rms_off;
 	unsigned int peak_rms_mode;
-	unsigned int fliter_structure;
+	unsigned int filter_structure;
 	unsigned int shift_ctrl;
 	unsigned int frame_size;
 	unsigned int channel_mask;
-- 
2.38.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] ASoC: tegra: Fix spelling mistake "fliter" -> "filter"
  2022-11-08 11:13 [PATCH] ASoC: tegra: Fix spelling mistake "fliter" -> "filter" Colin Ian King
@ 2022-11-08 14:22 ` Thierry Reding
  2022-11-10 21:36 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Thierry Reding @ 2022-11-08 14:22 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai,
	Jonathan Hunter, Sameer Pujar, alsa-devel, linux-tegra,
	kernel-janitors, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 587 bytes --]

On Tue, Nov 08, 2022 at 11:13:40AM +0000, Colin Ian King wrote:
> There is a spelling mistake in struct member fliter_structure.
> Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
>  sound/soc/tegra/tegra210_mbdrc.c | 4 ++--
>  sound/soc/tegra/tegra210_mbdrc.h | 2 +-
>  2 files changed, 3 insertions(+), 3 deletions(-)

I sometimes wonder how these come to be since it's an obvious typo yet
people manage to make them at least twice. Auto-completion I suspect
might play a role. Anyway, good catch:

Acked-by: Thierry Reding <treding@nvidia.com>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ASoC: tegra: Fix spelling mistake "fliter" -> "filter"
  2022-11-08 11:13 [PATCH] ASoC: tegra: Fix spelling mistake "fliter" -> "filter" Colin Ian King
  2022-11-08 14:22 ` Thierry Reding
@ 2022-11-10 21:36 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2022-11-10 21:36 UTC (permalink / raw)
  To: Takashi Iwai, linux-tegra, Colin Ian King, Liam Girdwood,
	Jonathan Hunter, Sameer Pujar, Jaroslav Kysela, Thierry Reding,
	alsa-devel
  Cc: kernel-janitors, linux-kernel

On Tue, 8 Nov 2022 11:13:40 +0000, Colin Ian King wrote:
> There is a spelling mistake in struct member fliter_structure.
> Fix it.
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[1/1] ASoC: tegra: Fix spelling mistake "fliter" -> "filter"
      commit: f8dc9cd92fe218aa1d8720e1105c542dcd3e58f2

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] 3+ messages in thread

end of thread, other threads:[~2022-11-10 21:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-08 11:13 [PATCH] ASoC: tegra: Fix spelling mistake "fliter" -> "filter" Colin Ian King
2022-11-08 14:22 ` Thierry Reding
2022-11-10 21:36 ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).