Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

backlight: tdo24m: Add blank line after declarations

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>

authored by

Jingoo Han and committed by
Lee Jones
51ed5dc2 3bf3b79f

+2
+2
drivers/video/backlight/tdo24m.c
··· 300 300 static int tdo24m_set_power(struct lcd_device *ld, int power) 301 301 { 302 302 struct tdo24m *lcd = lcd_get_data(ld); 303 + 303 304 return tdo24m_power(lcd, power); 304 305 } 305 306 306 307 static int tdo24m_get_power(struct lcd_device *ld) 307 308 { 308 309 struct tdo24m *lcd = lcd_get_data(ld); 310 + 309 311 return lcd->power; 310 312 } 311 313