From: Sachin Kamat Date: Sun, 25 Nov 2012 07:22:28 +0000 (+0530) Subject: leds: ledtrig-backlight: Fix checkpatch error X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=18e6f1392d6679b51799bfbc090eba3bea1f540a;p=linux.git leds: ledtrig-backlight: Fix checkpatch error Fixes the following checkpatch error: ERROR: space prohibited before that ':' (ctx:WxE) Signed-off-by: Sachin Kamat Signed-off-by: Bryan Wu --- diff --git a/drivers/leds/ledtrig-backlight.c b/drivers/leds/ledtrig-backlight.c index c74aff1fe70b3..027a2b15d7d87 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;