From patchwork Mon Nov 26 04:09:40 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 13180 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id BD77B23E17 for ; Mon, 26 Nov 2012 04:16:56 +0000 (UTC) Received: from mail-ia0-f180.google.com (mail-ia0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id 56B46A187CA for ; Mon, 26 Nov 2012 04:16:56 +0000 (UTC) Received: by mail-ia0-f180.google.com with SMTP id t4so4944547iag.11 for ; Sun, 25 Nov 2012 20:16:56 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=nNOhrQcKQrqG+FWgaAJ2keIhuTNbYfjGdw412yOrdLE=; b=UpIbT5jUx8k2uPq4BDmgZ64VoaDU/CRJ3A4A1506msK4dxEds2PUiVrqbE72coJyQ6 XQbt85DwbbJbbwHjeDdSeLBJY8GiC1GD1ASj4QZLeMkPUx/pl/rK31N2gLR3XqNtoAUt KgBidJfoP0VazwMDqt/CjKALoj+YfqWKmReFImE80LqUT/GLAnlXSJJxn35BSDi2894K +yIIxkQqI1N9z9DwEyXhSTkKtvBvwA6rOiEApsde5QmOte4HDbHkKTJk+rpZMrvfSRrO oE69anZsUEzKcl+GRQPuwaU08VpWdZZ0Pk9bCGlDQhXpFjEWNp0yqhvirhbowLMw25vS y9Bw== Received: by 10.50.187.197 with SMTP id fu5mr9671497igc.70.1353903416129; Sun, 25 Nov 2012 20:16:56 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.50.67.148 with SMTP id n20csp197731igt; Sun, 25 Nov 2012 20:16:55 -0800 (PST) Received: by 10.68.218.97 with SMTP id pf1mr33801419pbc.96.1353903415681; Sun, 25 Nov 2012 20:16:55 -0800 (PST) Received: from mail-pa0-f42.google.com (mail-pa0-f42.google.com [209.85.220.42]) by mx.google.com with ESMTPS id g1si257301paw.42.2012.11.25.20.16.55 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 25 Nov 2012 20:16:55 -0800 (PST) Received-SPF: neutral (google.com: 209.85.220.42 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.220.42; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.220.42 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by mail-pa0-f42.google.com with SMTP id rl6so5295874pac.1 for ; Sun, 25 Nov 2012 20:16:55 -0800 (PST) Received: by 10.68.231.97 with SMTP id tf1mr33587656pbc.149.1353903415459; Sun, 25 Nov 2012 20:16:55 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id yi9sm8036353pbc.39.2012.11.25.20.16.52 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 25 Nov 2012 20:16:54 -0800 (PST) From: Sachin Kamat To: linux-leds@vger.kernel.org Cc: cooloney@gmail.com, rpurdie@rpsys.net, patches@linaro.org, sachin.kamat@linaro.org Subject: [PATCH 12/16] leds: leds-pwm: Fix checkpatch warning Date: Mon, 26 Nov 2012 09:39:40 +0530 Message-Id: <1353902984-10728-13-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1353902984-10728-1-git-send-email-sachin.kamat@linaro.org> References: <1353902984-10728-1-git-send-email-sachin.kamat@linaro.org> X-Gm-Message-State: ALoCoQn7KwAxow86+Z8jPNhuIuf1nMJXj2UwgocaA8bcRZhfsnhCMXLC98FQf2PBDQYVVxBl6CuZ Fixes the following checkpatch warning: WARNING: please, no space before tabs FILE: leds/leds-pwm.c:29: ^Iunsigned int ^I^Iactive_low;$ Signed-off-by: Sachin Kamat --- drivers/leds/leds-pwm.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/leds/leds-pwm.c b/drivers/leds/leds-pwm.c index f2e44c7..827cb6e 100644 --- a/drivers/leds/leds-pwm.c +++ b/drivers/leds/leds-pwm.c @@ -26,7 +26,7 @@ struct led_pwm_data { struct led_classdev cdev; struct pwm_device *pwm; - unsigned int active_low; + unsigned int active_low; unsigned int period; };