ASoC: tegra: Fix spelling mistake "fliter" -> "filter"
authorColin Ian King <colin.i.king@gmail.com>
Tue, 8 Nov 2022 11:13:40 +0000 (11:13 +0000)
committerMark Brown <broonie@kernel.org>
Thu, 10 Nov 2022 17:52:46 +0000 (17:52 +0000)
There is a spelling mistake in struct member fliter_structure.
Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Acked-by: Thierry Reding <treding@nvidia.com>
Link: https://lore.kernel.org/r/20221108111340.115387-1-colin.i.king@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/tegra/tegra210_mbdrc.c
sound/soc/tegra/tegra210_mbdrc.h

index d786daa6aba62c30756d30ae67f1c5d85e1306c1..eeacb12202685866fc1166e2534c25f1f611a3f3 100644 (file)
@@ -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,
index 4c48da0e1dea689151c8c191474bdb34f402faaa..76e443a7934e2bffacfaf4c02aaeb13cce4707e3 100644 (file)
@@ -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;