[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230530163210.4324-1-sensor1010@163.com>
Date: Wed, 31 May 2023 00:32:10 +0800
From: Lizhe <sensor1010@....com>
To: james.schulman@...rus.com, david.rhodes@...rus.com,
tanureal@...nsource.cirrus.com, rf@...nsource.cirrus.com,
lgirdwood@...il.com, broonie@...nel.org, perex@...ex.cz,
tiwai@...e.com, alsa-devel@...a-project.org
Cc: patches@...nsource.cirrus.com, linux-kernel@...r.kernel.org,
Lizhe <sensor1010@....com>
Subject: [PATCH] dirvers/gpio: remove redundant reset gpio suffix
no need to add the suffix "gpio" or "gpios" after "reset", as they will
be automatically added, see of_find_gpio().
Signed-off-by: Lizhe <sensor1010@....com>
---
sound/soc/codecs/cs35l34.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/codecs/cs35l34.c b/sound/soc/codecs/cs35l34.c
index b3f98023e6a7..cbf0f2f4f9df 100644
--- a/sound/soc/codecs/cs35l34.c
+++ b/sound/soc/codecs/cs35l34.c
@@ -1061,7 +1061,7 @@ static int cs35l34_i2c_probe(struct i2c_client *i2c_client)
dev_err(&i2c_client->dev, "Failed to request IRQ: %d\n", ret);
cs35l34->reset_gpio = devm_gpiod_get_optional(&i2c_client->dev,
- "reset-gpios", GPIOD_OUT_LOW);
+ "reset", GPIOD_OUT_LOW);
if (IS_ERR(cs35l34->reset_gpio)) {
ret = PTR_ERR(cs35l34->reset_gpio);
goto err_regulator;
--
2.34.1
Powered by blists - more mailing lists