From: Jingoo Han Date: Fri, 9 Nov 2012 03:04:43 +0000 (+1100) Subject: backlight: platform_lcd: fix checkpatch error X-Git-Tag: next-20121112~5^2~114 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=1799a4c0f9dd454290a878bbce3a674fa2094782;p=karo-tx-linux.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 --- diff --git a/drivers/video/backlight/platform_lcd.c b/drivers/video/backlight/platform_lcd.c index ca4f5d70fe10..74cfca463e9c 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)