From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ie0-f177.google.com ([209.85.223.177]:58585 "EHLO mail-ie0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934543AbaDJC1G (ORCPT ); Wed, 9 Apr 2014 22:27:06 -0400 Received: by mail-ie0-f177.google.com with SMTP id rl12so3331606iec.22 for ; Wed, 09 Apr 2014 19:27:06 -0700 (PDT) From: Michael Welling To: linux-iio@vger.kernel.org, jic23@kernel.org, gregkh@linuxfoundation.org Cc: Michael Welling Subject: [PATCH 1/3] Staging: iio: Removes unwanted space before semicolon Date: Wed, 9 Apr 2014 21:26:43 -0500 Message-Id: <1397096805-25168-2-git-send-email-mwelling@ieee.org> In-Reply-To: <1397096805-25168-1-git-send-email-mwelling@ieee.org> References: <1397096805-25168-1-git-send-email-mwelling@ieee.org> Sender: linux-iio-owner@vger.kernel.org List-Id: linux-iio@vger.kernel.org Signed-off-by: Michael Welling --- drivers/staging/iio/light/tsl2583.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/iio/light/tsl2583.c b/drivers/staging/iio/light/tsl2583.c index 0a60def..77c7f65 100644 --- a/drivers/staging/iio/light/tsl2583.c +++ b/drivers/staging/iio/light/tsl2583.c @@ -211,7 +211,7 @@ static int taos_get_lux(struct iio_dev *indio_dev) if (chip->taos_chip_status != TSL258X_CHIP_WORKING) { /* device is not enabled */ dev_err(&chip->client->dev, "taos_get_lux device is not enabled\n"); - ret = -EBUSY ; + ret = -EBUSY; goto out_unlock; } -- 1.7.9.5