diff options
author | Dan Murphy <dmurphy@ti.com> | 2020-06-24 19:49:27 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-06-25 17:21:41 +0200 |
commit | bc07b54459cbb3a572a78b5c200ff79ef11b8158 (patch) | |
tree | 75b73cfd4a58144758dcebcf316cee9510c2f134 /sound/soc/codecs/tas2562.c | |
parent | ASoC: bindings: fsl-asoc-card: Add compatible string for wm8524 (diff) | |
download | linux-bc07b54459cbb3a572a78b5c200ff79ef11b8158.tar.xz linux-bc07b54459cbb3a572a78b5c200ff79ef11b8158.zip |
ASoC: tas2562: Update shutdown GPIO property
Update the shutdown GPIO property to be shutdown from shut-down.
Fixes: c173dba44c2d2 ("ASoC: tas2562: Introduce the TAS2562 amplifier")
Signed-off-by: Dan Murphy <dmurphy@ti.com>
Link: https://lore.kernel.org/r/20200624174932.9604-3-dmurphy@ti.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/tas2562.c')
-rw-r--r-- | sound/soc/codecs/tas2562.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/tas2562.c b/sound/soc/codecs/tas2562.c index 7fae88655a0f..f6495426f562 100644 --- a/sound/soc/codecs/tas2562.c +++ b/sound/soc/codecs/tas2562.c @@ -619,8 +619,8 @@ static int tas2562_parse_dt(struct tas2562_data *tas2562) struct device *dev = tas2562->dev; int ret = 0; - tas2562->sdz_gpio = devm_gpiod_get_optional(dev, "shut-down-gpio", - GPIOD_OUT_HIGH); + tas2562->sdz_gpio = devm_gpiod_get_optional(dev, "shut-down", + GPIOD_OUT_HIGH); if (IS_ERR(tas2562->sdz_gpio)) { if (PTR_ERR(tas2562->sdz_gpio) == -EPROBE_DEFER) { tas2562->sdz_gpio = NULL; |