]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ASoC: cs4271: Fix a typo in the CS4171_NR_RATIOS
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Wed, 24 Jul 2019 06:00:23 +0000 (08:00 +0200)
committerMark Brown <broonie@kernel.org>
Wed, 31 Jul 2019 11:07:12 +0000 (12:07 +0100)
This should be CS4271_NR_RATIOS.
Fix it and use it.

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Link: https://lore.kernel.org/r/20190724060023.31302-1-christophe.jaillet@wanadoo.fr
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/cs4271.c

index 1d03a1348162f5c3736ff680f0335e426930a4f3..04b86a51e055460d90cad00e69065ec2dc9a76af 100644 (file)
@@ -334,7 +334,7 @@ static struct cs4271_clk_cfg cs4271_clk_tab[] = {
        {0, CS4271_MODE1_MODE_4X, 256,  CS4271_MODE1_DIV_2},
 };
 
-#define CS4171_NR_RATIOS ARRAY_SIZE(cs4271_clk_tab)
+#define CS4271_NR_RATIOS ARRAY_SIZE(cs4271_clk_tab)
 
 static int cs4271_hw_params(struct snd_pcm_substream *substream,
                            struct snd_pcm_hw_params *params,
@@ -383,13 +383,13 @@ static int cs4271_hw_params(struct snd_pcm_substream *substream,
                val = CS4271_MODE1_MODE_4X;
 
        ratio = cs4271->mclk / cs4271->rate;
-       for (i = 0; i < CS4171_NR_RATIOS; i++)
+       for (i = 0; i < CS4271_NR_RATIOS; i++)
                if ((cs4271_clk_tab[i].master == cs4271->master) &&
                    (cs4271_clk_tab[i].speed_mode == val) &&
                    (cs4271_clk_tab[i].ratio == ratio))
                        break;
 
-       if (i == CS4171_NR_RATIOS) {
+       if (i == CS4271_NR_RATIOS) {
                dev_err(component->dev, "Invalid sample rate\n");
                return -EINVAL;
        }