projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc07b54
)
ASoC: tas2562: Fix format issue for extra space before a comma
author
Dan Murphy
<dmurphy@ti.com>
Wed, 24 Jun 2020 17:49:28 +0000
(12:49 -0500)
committer
Mark Brown
<broonie@kernel.org>
Thu, 25 Jun 2020 15:21:42 +0000
(16:21 +0100)
Fix the issue found that there is an extra space before a comma in the
volume control.
Fixes: bf726b1c86f2c ("ASoC: tas2562: Add support for digital volume control")
Signed-off-by: Dan Murphy <dmurphy@ti.com>
Link:
https://lore.kernel.org/r/20200624174932.9604-4-dmurphy@ti.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/tas2562.c
patch
|
blob
|
history
diff --git
a/sound/soc/codecs/tas2562.c
b/sound/soc/codecs/tas2562.c
index f6495426f5623b3dcd4aa47b807db446bdca7450..d26e30a2948ccedd71cd234b73ab59210d164fe9 100644
(file)
--- a/
sound/soc/codecs/tas2562.c
+++ b/
sound/soc/codecs/tas2562.c
@@
-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),
},
};