projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3bf3b79
)
backlight: tdo24m: Add blank line after declarations
author
Jingoo Han
<jg1.han@samsung.com>
Wed, 27 Aug 2014 01:13:49 +0000
(10:13 +0900)
committer
Lee Jones
<lee.jones@linaro.org>
Fri, 29 Aug 2014 07:26:12 +0000
(08:26 +0100)
Fixed the following checkpatch warning.
WARNING: Missing a blank line after declarations
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/video/backlight/tdo24m.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/video/backlight/tdo24m.c
b/drivers/video/backlight/tdo24m.c
index 908016fc5829ff3ef0667f5be62c51999d30106e..30afce33ef2afcfa364e3aa622d09a48b152d94e 100644
(file)
--- a/
drivers/video/backlight/tdo24m.c
+++ b/
drivers/video/backlight/tdo24m.c
@@
-300,12
+300,14
@@
static int tdo24m_power(struct tdo24m *lcd, int power)
static int tdo24m_set_power(struct lcd_device *ld, int power)
{
struct tdo24m *lcd = lcd_get_data(ld);
+
return tdo24m_power(lcd, power);
}
static int tdo24m_get_power(struct lcd_device *ld)
{
struct tdo24m *lcd = lcd_get_data(ld);
+
return lcd->power;
}