Skip to content

Commit

Permalink
backlight: platform_lcd: fix checkpatch error
Browse files Browse the repository at this point in the history
This patch fixes the checkpatch error as below:

  ERROR: spaces prohibited around that ':' (ctx:WxW)

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Jingoo Han authored and Linus Torvalds committed Dec 18, 2012
1 parent ae872db commit 8690c70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/video/backlight/platform_lcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 8690c70

Please sign in to comment.