aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJingoo Han <[email protected]>2012-12-17 16:00:31 -0800
committerLinus Torvalds <[email protected]>2012-12-17 17:15:15 -0800
commit8690c70ea846a50e18241428cfbc3eade4104fb9 (patch)
treef92c7df8b851834da3c6a858991adadcd16d13f4
parentae872dbba92efbbaa7486fe84326427a66ed8335 (diff)
backlight: platform_lcd: fix checkpatch error
This patch fixes the checkpatch error as below: ERROR: spaces prohibited around that ':' (ctx:WxW) Signed-off-by: Jingoo Han <[email protected]> Cc: Richard Purdie <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--drivers/video/backlight/platform_lcd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/backlight/platform_lcd.c b/drivers/video/backlight/platform_lcd.c
index 894bfc5ce422..17a6b83f97af 100644
--- a/drivers/video/backlight/platform_lcd.c
+++ b/drivers/video/backlight/platform_lcd.c
@@ -27,7 +27,7 @@ struct platform_lcd {
struct plat_lcd_data *pdata;
unsigned int power;
- unsigned int suspended : 1;
+ unsigned int suspended:1;
};
static inline struct platform_lcd *to_our_lcd(struct lcd_device *lcd)