Message ID | b61f3ee038bc0f577e60256c71a68bea783d0a13.1524819052.git.arvind.yadav.cs@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 2018-04-27 11:56, Arvind Yadav wrote: > Replace the manual validity checks for the GPIO with the > gpio_is_valid(). Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com> > Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> > --- > sound/soc/codecs/tlv320dac33.c | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/sound/soc/codecs/tlv320dac33.c b/sound/soc/codecs/tlv320dac33.c > index a957eae..c23b9db 100644 > --- a/sound/soc/codecs/tlv320dac33.c > +++ b/sound/soc/codecs/tlv320dac33.c > @@ -397,13 +397,13 @@ static int dac33_hard_power(struct snd_soc_component *component, int power) > goto exit; > } > > - if (dac33->power_gpio >= 0) > + if (gpio_is_valid(dac33->power_gpio)) > gpio_set_value(dac33->power_gpio, 1); > > dac33->chip_power = 1; > } else { > dac33_soft_power(component, 0); > - if (dac33->power_gpio >= 0) > + if (gpio_is_valid(dac33->power_gpio)) > gpio_set_value(dac33->power_gpio, 0); > > ret = regulator_bulk_disable(ARRAY_SIZE(dac33->supplies), > @@ -1519,7 +1519,7 @@ static int dac33_i2c_probe(struct i2c_client *client, > dac33->fifo_mode = DAC33_FIFO_BYPASS; > > /* Check if the reset GPIO number is valid and request it */ > - if (dac33->power_gpio >= 0) { > + if (gpio_is_valid(dac33->power_gpio)) { > ret = gpio_request(dac33->power_gpio, "tlv320dac33 reset"); > if (ret < 0) { > dev_err(&client->dev, > @@ -1548,7 +1548,7 @@ static int dac33_i2c_probe(struct i2c_client *client, > > return ret; > err_get: > - if (dac33->power_gpio >= 0) > + if (gpio_is_valid(dac33->power_gpio)) > gpio_free(dac33->power_gpio); > err_gpio: > return ret; > @@ -1561,7 +1561,7 @@ static int dac33_i2c_remove(struct i2c_client *client) > if (unlikely(dac33->chip_power)) > dac33_hard_power(dac33->component, 0); > > - if (dac33->power_gpio >= 0) > + if (gpio_is_valid(dac33->power_gpio)) > gpio_free(dac33->power_gpio); > > return 0; > - Péter Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki. Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/sound/soc/codecs/tlv320dac33.c b/sound/soc/codecs/tlv320dac33.c index a957eae..c23b9db 100644 --- a/sound/soc/codecs/tlv320dac33.c +++ b/sound/soc/codecs/tlv320dac33.c @@ -397,13 +397,13 @@ static int dac33_hard_power(struct snd_soc_component *component, int power) goto exit; } - if (dac33->power_gpio >= 0) + if (gpio_is_valid(dac33->power_gpio)) gpio_set_value(dac33->power_gpio, 1); dac33->chip_power = 1; } else { dac33_soft_power(component, 0); - if (dac33->power_gpio >= 0) + if (gpio_is_valid(dac33->power_gpio)) gpio_set_value(dac33->power_gpio, 0); ret = regulator_bulk_disable(ARRAY_SIZE(dac33->supplies), @@ -1519,7 +1519,7 @@ static int dac33_i2c_probe(struct i2c_client *client, dac33->fifo_mode = DAC33_FIFO_BYPASS; /* Check if the reset GPIO number is valid and request it */ - if (dac33->power_gpio >= 0) { + if (gpio_is_valid(dac33->power_gpio)) { ret = gpio_request(dac33->power_gpio, "tlv320dac33 reset"); if (ret < 0) { dev_err(&client->dev, @@ -1548,7 +1548,7 @@ static int dac33_i2c_probe(struct i2c_client *client, return ret; err_get: - if (dac33->power_gpio >= 0) + if (gpio_is_valid(dac33->power_gpio)) gpio_free(dac33->power_gpio); err_gpio: return ret; @@ -1561,7 +1561,7 @@ static int dac33_i2c_remove(struct i2c_client *client) if (unlikely(dac33->chip_power)) dac33_hard_power(dac33->component, 0); - if (dac33->power_gpio >= 0) + if (gpio_is_valid(dac33->power_gpio)) gpio_free(dac33->power_gpio); return 0;
Replace the manual validity checks for the GPIO with the gpio_is_valid(). Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> --- sound/soc/codecs/tlv320dac33.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)