diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-11-25 08:22:28 +0100 |
---|---|---|
committer | Bryan Wu <cooloney@gmail.com> | 2012-11-27 23:49:30 +0100 |
commit | 18e6f1392d6679b51799bfbc090eba3bea1f540a (patch) | |
tree | 18566f718c04eb43f8420ac5bb5b0431b5f9330d | |
parent | leds: leds-wrap: Use <linux/io.h> instead of <asm/io.h> (diff) | |
download | linux-18e6f1392d6679b51799bfbc090eba3bea1f540a.tar.xz linux-18e6f1392d6679b51799bfbc090eba3bea1f540a.zip |
leds: ledtrig-backlight: Fix checkpatch error
Fixes the following checkpatch error:
ERROR: space prohibited before that ':' (ctx:WxE)
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Bryan Wu <cooloney@gmail.com>
-rw-r--r-- | 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 c74aff1fe70b..027a2b15d7d8 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; |