From patchwork Mon Nov 26 04:09:43 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 13183 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 1431823E17 for ; Mon, 26 Nov 2012 04:17:06 +0000 (UTC) Received: from mail-ie0-f180.google.com (mail-ie0-f180.google.com [209.85.223.180]) by fiordland.canonical.com (Postfix) with ESMTP id BDBE9A192AC for ; Mon, 26 Nov 2012 04:17:05 +0000 (UTC) Received: by mail-ie0-f180.google.com with SMTP id c10so4007790ieb.11 for ; Sun, 25 Nov 2012 20:17:05 -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=m1ur19aegbztHsXrjGmtv0Tbwai4mWRPkcZdRxpMqv0=; b=Y1NpLPp/B5ctYRPLnF+nl4Rw0xRcoQCqRWoeVy6oJIoGUXaXSv+4SGvp9V1UrDAvKa 5AP/AIxz8/DrpNHevNYLU4368iu8BlVmQdMfZC2lBR9t+4QovC5ERqwEBLFhrU7sO6Kr DABsdbyq7zm13kUPzc2V2t3Y8zQNXOpL4BYRvfBtwPGAdd2dXXB+2CrHHGsL9HuDAkZj 9S01m4OgMofppuuMBXdlUrvhkwIpOopcMjDWmGf3aL6Rawy4BjrArQg5DAnUakfdUmHM o20HswBrKg+J8smMRIMNixeFVpqIP4+9GGu+VCsrd38i1dVbm3oPkiM0VDs1tQaHnVn0 QXpg== Received: by 10.50.213.34 with SMTP id np2mr9770318igc.57.1353903425578; Sun, 25 Nov 2012 20:17:05 -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 n20csp197768igt; Sun, 25 Nov 2012 20:17:05 -0800 (PST) Received: by 10.68.83.68 with SMTP id o4mr34471449pby.25.1353903425087; Sun, 25 Nov 2012 20:17:05 -0800 (PST) Received: from mail-da0-f44.google.com (mail-da0-f44.google.com [209.85.210.44]) by mx.google.com with ESMTPS id qs10si17872582pbb.100.2012.11.25.20.17.04 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 25 Nov 2012 20:17:05 -0800 (PST) Received-SPF: neutral (google.com: 209.85.210.44 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.210.44; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.210.44 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-da0-f44.google.com with SMTP id z20so2184242dae.17 for ; Sun, 25 Nov 2012 20:17:04 -0800 (PST) Received: by 10.68.230.234 with SMTP id tb10mr33819271pbc.71.1353903424799; Sun, 25 Nov 2012 20:17:04 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id yi9sm8036353pbc.39.2012.11.25.20.17.01 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 25 Nov 2012 20:17:04 -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 15/16] leds: ledtrig-backlight: Fix checkpatch error Date: Mon, 26 Nov 2012 09:39:43 +0530 Message-Id: <1353902984-10728-16-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: ALoCoQmwYDQ3s4C3bH7VEOUlVyQ5v7ahh3j3qPwexCi2jmPyFcdgnEy1Ha5ZzOac+LCMD/xW8N/3 Fixes the following checkpatch error: ERROR: space prohibited before that ':' (ctx:WxE) Signed-off-by: Sachin Kamat --- drivers/leds/ledtrig-backlight.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/leds/ledtrig-backlight.c b/drivers/leds/ledtrig-backlight.c index c74aff1..027a2b1 100644 --- a/drivers/leds/ledtrig-backlight.c +++ b/drivers/leds/ledtrig-backlight.c @@ -40,7 +40,7 @@ static int fb_notifier_callback(struct notifier_block *p, int new_status = *blank ? BLANK : UNBLANK; switch (event) { - case FB_EVENT_BLANK : + case FB_EVENT_BLANK: if (new_status == n->old_status) break;