From mboxrd@z Thu Jan 1 00:00:00 1970 From: SF Markus Elfring Date: Sat, 24 Sep 2016 06:30:08 +0000 Subject: [PATCH 6/7] iio: Rename a jump label in iio_scan_el_store() Message-Id: <7d0faf7f-6163-bce6-07fc-840efbbab99a@users.sourceforge.net> List-Id: References: <566ABCD9.1060404@users.sourceforge.net> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-iio@vger.kernel.org, Hartmut Knaack , Jonathan Cameron , Lars-Peter Clausen , Peter Meerwald-Stadler Cc: LKML , kernel-janitors@vger.kernel.org, Julia Lawall From: Markus Elfring 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 --- 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