Message ID | 20190815091920.64480-1-yuehaibing@huawei.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 554b75bde64bcad9662530726d1483f7ef012069 |
Headers | show |
Series | [-next] ASoC: wm8737: Fix copy-paste error in wm8737_snd_controls | expand |
On Thu, Aug 15, 2019 at 05:19:20PM +0800, YueHaibing wrote: > sound/soc/codecs/wm8737.c:112:29: warning: > high_3d defined but not used [-Wunused-const-variable=] > > 'high_3d' should be used for 3D High Cut-off. > > Reported-by: Hulk Robot <hulkci@huawei.com> > Fixes: 2a9ae13a2641 ("ASoC: Add initial WM8737 driver") > Signed-off-by: YueHaibing <yuehaibing@huawei.com> > --- Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com> Thanks, Charles
diff --git a/sound/soc/codecs/wm8737.c b/sound/soc/codecs/wm8737.c index 0c246fb..7a3f9fb 100644 --- a/sound/soc/codecs/wm8737.c +++ b/sound/soc/codecs/wm8737.c @@ -167,7 +167,7 @@ SOC_DOUBLE("Polarity Invert Switch", WM8737_ADC_CONTROL, 5, 6, 1, 0), SOC_SINGLE("3D Switch", WM8737_3D_ENHANCE, 0, 1, 0), SOC_SINGLE("3D Depth", WM8737_3D_ENHANCE, 1, 15, 0), SOC_ENUM("3D Low Cut-off", low_3d), -SOC_ENUM("3D High Cut-off", low_3d), +SOC_ENUM("3D High Cut-off", high_3d), SOC_SINGLE_TLV("3D ADC Volume", WM8737_3D_ENHANCE, 7, 1, 1, adc_tlv), SOC_SINGLE("Noise Gate Switch", WM8737_NOISE_GATE, 0, 1, 0),
sound/soc/codecs/wm8737.c:112:29: warning: high_3d defined but not used [-Wunused-const-variable=] 'high_3d' should be used for 3D High Cut-off. Reported-by: Hulk Robot <hulkci@huawei.com> Fixes: 2a9ae13a2641 ("ASoC: Add initial WM8737 driver") Signed-off-by: YueHaibing <yuehaibing@huawei.com> --- sound/soc/codecs/wm8737.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)