Re: [PATCH] iio: light: pa12203001: Poweroff chip if register fails

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 06/11/15 09:10, Adriana Reus wrote:
> Make sure we poweroff the chip if for any reason iio_register
> returns an error.
> 
> Signed-off-by: Adriana Reus <adriana.reus@xxxxxxxxx>
Good spot.

Applied to the togreg branch of iio.git - initially pushed out as
testing etc etc.

Jonathan
> ---
>  drivers/iio/light/pa12203001.c | 16 +++++++++++-----
>  1 file changed, 11 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/iio/light/pa12203001.c b/drivers/iio/light/pa12203001.c
> index 45f7bde..76a9e12 100644
> --- a/drivers/iio/light/pa12203001.c
> +++ b/drivers/iio/light/pa12203001.c
> @@ -381,17 +381,23 @@ static int pa12203001_probe(struct i2c_client *client,
>  		return ret;
>  
>  	ret = pm_runtime_set_active(&client->dev);
> -	if (ret < 0) {
> -		pa12203001_power_chip(indio_dev, PA12203001_CHIP_DISABLE);
> -		return ret;
> -	}
> +	if (ret < 0)
> +		goto out_err;
>  
>  	pm_runtime_enable(&client->dev);
>  	pm_runtime_set_autosuspend_delay(&client->dev,
>  					 PA12203001_SLEEP_DELAY_MS);
>  	pm_runtime_use_autosuspend(&client->dev);
>  
> -	return iio_device_register(indio_dev);
> +	ret = iio_device_register(indio_dev);
> +	if (ret < 0)
> +		goto out_err;
> +
> +	return 0;
> +
> +out_err:
> +	pa12203001_power_chip(indio_dev, PA12203001_CHIP_DISABLE);
> +	return ret;
>  }
>  
>  static int pa12203001_remove(struct i2c_client *client)
> 

--
To unsubscribe from this list: send the line "unsubscribe linux-iio" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Input]     [Linux Kernel]     [Linux SCSI]     [X.org]

  Powered by Linux