From: Fabio Estevam Date: Sun, 16 Jul 2017 21:11:13 +0000 (-0300) Subject: ASoC: sta32x: Remove unneeded gpiod NULL check X-Git-Tag: v4.14-rc1~114^2~3^2~3^4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c5efe232e09ef29cc2f9e8333a49dd8891366c22;p=thirdparty%2Flinux.git ASoC: sta32x: Remove unneeded gpiod NULL check The gpiod API checks for NULL descriptors, so there is no need to duplicate the check in the driver. Signed-off-by: Fabio Estevam Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/sta32x.c b/sound/soc/codecs/sta32x.c index 0790ae8530d96..5b888476d9ff1 100644 --- a/sound/soc/codecs/sta32x.c +++ b/sound/soc/codecs/sta32x.c @@ -847,8 +847,7 @@ static int sta32x_set_bias_level(struct snd_soc_codec *codec, msleep(300); sta32x_watchdog_stop(sta32x); - if (sta32x->gpiod_nreset) - gpiod_set_value(sta32x->gpiod_nreset, 0); + gpiod_set_value(sta32x->gpiod_nreset, 0); regulator_bulk_disable(ARRAY_SIZE(sta32x->supplies), sta32x->supplies);