diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-11-25 02:22:28 -0500 |
---|---|---|
committer | Bryan Wu <cooloney@gmail.com> | 2012-11-27 17:49:30 -0500 |
commit | 18e6f1392d6679b51799bfbc090eba3bea1f540a (patch) | |
tree | 18566f718c04eb43f8420ac5bb5b0431b5f9330d /drivers/leds/ledtrig-backlight.c | |
parent | 572dc62078440b32cbfb42a4221bf9880a5846c8 (diff) |
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>
Diffstat (limited to 'drivers/leds/ledtrig-backlight.c')
-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, | |||
40 | int new_status = *blank ? BLANK : UNBLANK; | 40 | int new_status = *blank ? BLANK : UNBLANK; |
41 | 41 | ||
42 | switch (event) { | 42 | switch (event) { |
43 | case FB_EVENT_BLANK : | 43 | case FB_EVENT_BLANK: |
44 | if (new_status == n->old_status) | 44 | if (new_status == n->old_status) |
45 | break; | 45 | break; |
46 | 46 | ||