[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <532D79B5.5000804@kernel.org>
Date: Sat, 22 Mar 2014 11:53:25 +0000
From: Jonathan Cameron <jic23@...nel.org>
To: Jimmy Li <coder.liss@...il.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>
CC: linux-iio@...r.kernel.org, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] fix a missing break in devivers/staging/iio
On 22/03/14 05:58, Jimmy Li wrote:
> fix a missing break.
>
> Signed-off-by: Jimmy Li <coder.liss@...il.com>
Thanks. I reworded the patch title to match with convention we have ended
up with for iio patches and applied to the fixes-togreg branch of iio.git
This will go in shortly after the first rc.
Jonathan
> ---
> drivers/staging/iio/resolver/ad2s1200.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/staging/iio/resolver/ad2s1200.c b/drivers/staging/iio/resolver/ad2s1200.c
> index 36eedd8..e2b4820 100644
> --- a/drivers/staging/iio/resolver/ad2s1200.c
> +++ b/drivers/staging/iio/resolver/ad2s1200.c
> @@ -70,6 +70,7 @@ static int ad2s1200_read_raw(struct iio_dev *indio_dev,
> vel = (((s16)(st->rx[0])) << 4) | ((st->rx[1] & 0xF0) >> 4);
> vel = (vel << 4) >> 4;
> *val = vel;
> + break;
> default:
> mutex_unlock(&st->lock);
> return -EINVAL;
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists