Commit c8294da2 authored by Dan Murphy's avatar Dan Murphy Committed by Mark Brown

ASoC: tas2562: Fix format issue for extra space before a comma

Fix the issue found that there is an extra space before a comma in the
volume control.

Fixes: bf726b1c ("ASoC: tas2562: Add support for digital volume control")
Signed-off-by: default avatarDan Murphy <dmurphy@ti.com>
Link: https://lore.kernel.org/r/20200624174932.9604-4-dmurphy@ti.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent bc07b544
......@@ -504,7 +504,7 @@ static const struct snd_kcontrol_new tas2562_snd_controls[] = {
.info = snd_soc_info_volsw,
.get = tas2562_volume_control_get,
.put = tas2562_volume_control_put,
.private_value = SOC_SINGLE_VALUE(TAS2562_DVC_CFG1, 0, 110, 0, 0) ,
.private_value = SOC_SINGLE_VALUE(TAS2562_DVC_CFG1, 0, 110, 0, 0),
},
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment