From: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> Date: Sat, 24 Sep 2016 06:54:49 +0200 Adjust jump labels according to the current Linux coding style convention. Signed-off-by: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> --- drivers/iio/industrialio-buffer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/iio/industrialio-buffer.c b/drivers/iio/industrialio-buffer.c index 7a4d9499..a865af8 100644 --- a/drivers/iio/industrialio-buffer.c +++ b/drivers/iio/industrialio-buffer.c @@ -1028,16 +1028,16 @@ static ssize_t iio_buffer_store_watermark(struct device *dev, if (val > buffer->length) { ret = -EINVAL; - goto out; + goto unlock; } if (iio_buffer_is_active(indio_dev->buffer)) { ret = -EBUSY; - goto out; + goto unlock; } buffer->watermark = val; -out: +unlock: mutex_unlock(&indio_dev->mlock); return ret ? ret : len; -- 2.10.0 -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html