diff options
author | John Hsu <KCHSU0@nuvoton.com> | 2016-06-03 00:02:16 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-06-03 06:41:35 -0400 |
commit | 0cbeccdfb159110f5158c0daf52acf6b2288eaf7 (patch) | |
tree | 43c954e3177cdf72a681e0245c3d17900c79c513 | |
parent | 2ec30f60ffc0fee24536367aa21b4965eb02c06f (diff) |
ASoC: nau8825: correct typo in biquad filter coefficients
There is typo in the name of biquad filter coefficients control.
The patch is to fix the typo.
Signed-off-by: John Hsu <KCHSU0@nuvoton.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/nau8825.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/nau8825.c b/sound/soc/codecs/nau8825.c index dbb91aae9905..43cb677d3db2 100644 --- a/sound/soc/codecs/nau8825.c +++ b/sound/soc/codecs/nau8825.c | |||
@@ -386,7 +386,7 @@ static const struct snd_kcontrol_new nau8825_controls[] = { | |||
386 | SOC_ENUM("DAC Oversampling Rate", nau8825_dac_oversampl_enum), | 386 | SOC_ENUM("DAC Oversampling Rate", nau8825_dac_oversampl_enum), |
387 | /* programmable biquad filter */ | 387 | /* programmable biquad filter */ |
388 | SOC_ENUM("BIQ Path Select", nau8825_biq_path_enum), | 388 | SOC_ENUM("BIQ Path Select", nau8825_biq_path_enum), |
389 | SND_SOC_BYTES_EXT("BIQ Coefficeints", 20, | 389 | SND_SOC_BYTES_EXT("BIQ Coefficients", 20, |
390 | nau8825_biq_coeff_get, nau8825_biq_coeff_put), | 390 | nau8825_biq_coeff_get, nau8825_biq_coeff_put), |
391 | }; | 391 | }; |
392 | 392 | ||