lkml.org 
[lkml]   [2016]   [Sep]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Subject[PATCH 6/7] iio: Rename a jump label in iio_scan_el_store()
    From
    Date
    From: Markus Elfring <elfring@users.sourceforge.net>
    Date: Sat, 24 Sep 2016 07:40:59 +0200

    Adjust jump labels according to the current Linux coding style convention.

    Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
    ---
    drivers/iio/industrialio-buffer.c | 11 +++++------
    1 file changed, 5 insertions(+), 6 deletions(-)

    diff --git a/drivers/iio/industrialio-buffer.c b/drivers/iio/industrialio-buffer.c
    index 4b8f313..57e201a 100644
    --- a/drivers/iio/industrialio-buffer.c
    +++ b/drivers/iio/industrialio-buffer.c
    @@ -363,22 +363,21 @@ static ssize_t iio_scan_el_store(struct device *dev,
    mutex_lock(&indio_dev->mlock);
    if (iio_buffer_is_active(indio_dev->buffer)) {
    ret = -EBUSY;
    - goto error_ret;
    + goto unlock;
    }
    ret = iio_scan_mask_query(indio_dev, buffer, this_attr->address);
    if (ret < 0)
    - goto error_ret;
    + goto unlock;
    if (!state && ret) {
    ret = iio_scan_mask_clear(buffer, this_attr->address);
    if (ret)
    - goto error_ret;
    + goto unlock;
    } else if (state && !ret) {
    ret = iio_scan_mask_set(indio_dev, buffer, this_attr->address);
    if (ret)
    - goto error_ret;
    + goto unlock;
    }
    -
    -error_ret:
    +unlock:
    mutex_unlock(&indio_dev->mlock);

    return ret < 0 ? ret : len;
    --
    2.10.0
    \
     
     \ /
      Last update: 2016-09-24 08:31    [W:4.019 / U:0.332 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site