Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1623713

Re: [PATCH] Staging: iio: accel: adis16203: fixed a brace coding style issue

From Jonathan Cameron <jic23@kernel.org>
Newsgroups linux.kernel
Subject Re: [PATCH] Staging: iio: accel: adis16203: fixed a brace coding style issue
Date 2017-04-14 17:20 +0200
Message-ID <twbaW-2FI-9@gated-at.bofh.it> (permalink)
References <tvNrY-3KR-21@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On 13/04/17 14:51, René Hickersberger wrote:
> From: René Hickersberger?= <renehickersberger@gmx.net>
> 
> Fixed a brace coding style issue.
> 
> Signed-off-by: René Hickersberger <renehickersberger@gmx.net>
Applied.

Thanks,

Jonathan
> ---
>  drivers/staging/iio/accel/adis16203.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/drivers/staging/iio/accel/adis16203.c b/drivers/staging/iio/accel/adis16203.c
> index faa2869..4e3fa75 100644
> --- a/drivers/staging/iio/accel/adis16203.c
> +++ b/drivers/staging/iio/accel/adis16203.c
> @@ -205,9 +205,8 @@ static int adis16203_read_raw(struct iio_dev *indio_dev,
>  		bits = 14;
>  		addr = adis16203_addresses[chan->scan_index];
>  		ret = adis_read_reg_16(st, addr, &val16);
> -		if (ret) {
> +		if (ret)
>  			return ret;
> -		}
>  		val16 &= (1 << bits) - 1;
>  		val16 = (s16)(val16 << (16 - bits)) >> (16 - bits);
>  		*val = val16;
> 

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH] Staging: iio: accel: adis16203: fixed a brace coding style issue René Hickersberger <renehickersberger@gmx.net> - 2017-04-13 16:00 +0200
  Re: [PATCH] Staging: iio: accel: adis16203: fixed a brace coding  style issue Jonathan Cameron <jic23@kernel.org> - 2017-04-14 17:20 +0200

csiph-web