diff options
| author | Shenghao Ding <shenghao-ding@ti.com> | 2025-11-22 07:44:27 +0800 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2025-11-24 11:31:21 +0000 |
| commit | 950167a99dfd27eeaf177092908c598a31c79a7e (patch) | |
| tree | 84ba1178cdfb688927c2576a65a7f03d9b90ff37 | |
| parent | 34b78ddd78428e66a7f08f71763258723eae2306 (diff) | |
ASoC: tas2781: correct the wrong period
A wrong preiod at the end of the sentence was reported by one of my
customers. Their thorough code review is greatly appreciated.
Fixes: 49e2e353fb0d ("ASoC: tas2781: Add Calibration Kcontrols for Chromebook")
Signed-off-by: Shenghao Ding <shenghao-ding@ti.com>
Link: https://patch.msgid.link/20251121234427.402-1-shenghao-ding@ti.com
Signed-off-by: Mark Brown <broonie@kernel.org>
| -rw-r--r-- | sound/soc/codecs/tas2781-i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/tas2781-i2c.c b/sound/soc/codecs/tas2781-i2c.c index 8f37aa00e62e..a3b4d2c3b478 100644 --- a/sound/soc/codecs/tas2781-i2c.c +++ b/sound/soc/codecs/tas2781-i2c.c @@ -1391,7 +1391,7 @@ static int tasdevice_create_cali_ctrls(struct tasdevice_priv *priv) /* * Alloc kcontrol via devm_kzalloc(), which don't manually - * free the kcontrol。 + * free the kcontrol. */ cali_ctrls = devm_kcalloc(priv->dev, nctrls, sizeof(cali_ctrls[0]), GFP_KERNEL); |