From: Jingoo Han Date: Tue, 18 Dec 2012 00:00:31 +0000 (-0800) Subject: backlight: platform_lcd: fix checkpatch error X-Git-Tag: upstream/snapshot3+hdmi~6031^2~141 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8690c70ea846a50e18241428cfbc3eade4104fb9;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git 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 Cc: Richard Purdie Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/video/backlight/platform_lcd.c b/drivers/video/backlight/platform_lcd.c index 894bfc5..17a6b83 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)