]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ASoC: tas2781-i2c: Get the right GPIO line
authorLinus Walleij <linus.walleij@linaro.org>
Wed, 7 Aug 2024 15:02:33 +0000 (17:02 +0200)
committerMark Brown <broonie@kernel.org>
Wed, 7 Aug 2024 22:45:16 +0000 (23:45 +0100)
The code is obtaining a GPIO reset using the reset GPIO
name "reset-gpios", but the gpiolib is already adding the
suffix "-gpios" to anything passed to this function and
will be looking for "reset-gpios-gpios" which is most
certainly not what the author desired.

Fix it up.

Fixes: ef3bcde75d06 ("ASoC: tas2781: Add tas2781 driver")
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://patch.msgid.link/20240807-asoc-tas-gpios-v2-2-bd0f2705d58b@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/tas2781-i2c.c

index 46cc568cea76c958e9ef5713bc1d9809da9236ca..313c17f76ca4ef5ed875edb0c869ab8fdbeed13a 100644 (file)
@@ -794,7 +794,7 @@ static void tasdevice_parse_dt(struct tasdevice_priv *tas_priv)
                tas_priv->tasdevice[i].dev_addr = dev_addrs[i];
 
        tas_priv->reset = devm_gpiod_get_optional(&client->dev,
-                       "reset-gpios", GPIOD_OUT_HIGH);
+                       "reset", GPIOD_OUT_HIGH);
        if (IS_ERR(tas_priv->reset))
                dev_err(tas_priv->dev, "%s Can't get reset GPIO\n",
                        __func__);