backlight: platform_lcd: fix checkpatch error
authorJingoo Han <[email protected]>
Tue, 18 Dec 2012 00:00:31 +0000 (16:00 -0800)
committerLinus Torvalds <[email protected]>
Tue, 18 Dec 2012 01:15:15 +0000 (17:15 -0800)
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]>
drivers/video/backlight/platform_lcd.c

index 894bfc5ce4221224b32c21b27fe8159680a9a8a5..17a6b83f97afdab22abeb065a9c5876d92d3f5b9 100644 (file)
@@ -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)