aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/soc/codecs/sta350.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/sta350.c b/sound/soc/codecs/sta350.c
index 669e3228241e..cc67a24c6e31 100644
--- a/sound/soc/codecs/sta350.c
+++ b/sound/soc/codecs/sta350.c
@@ -1218,8 +1218,8 @@ static int sta350_i2c_probe(struct i2c_client *i2c,
1218 if (IS_ERR(sta350->gpiod_nreset)) 1218 if (IS_ERR(sta350->gpiod_nreset))
1219 return PTR_ERR(sta350->gpiod_nreset); 1219 return PTR_ERR(sta350->gpiod_nreset);
1220 1220
1221 sta350->gpiod_power_down = devm_gpiod_get(dev, "power-down", 1221 sta350->gpiod_power_down = devm_gpiod_get_optional(dev, "power-down",
1222 GPIOD_OUT_LOW); 1222 GPIOD_OUT_LOW);
1223 if (IS_ERR(sta350->gpiod_power_down)) 1223 if (IS_ERR(sta350->gpiod_power_down))
1224 return PTR_ERR(sta350->gpiod_power_down); 1224 return PTR_ERR(sta350->gpiod_power_down);
1225 1225