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

backlight: lp855x: 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
a94cb126 b50ffb8a

+2
+2
drivers/video/backlight/lp855x_bl.c
··· 268 268 269 269 } else if (lp->mode == REGISTER_BASED) { 270 270 u8 val = bl->props.brightness; 271 + 271 272 lp855x_write_byte(lp, lp->cfg->reg_brightness, val); 272 273 } 273 274 ··· 309 308 struct device_attribute *attr, char *buf) 310 309 { 311 310 struct lp855x *lp = dev_get_drvdata(dev); 311 + 312 312 return scnprintf(buf, PAGE_SIZE, "%s\n", lp->chipname); 313 313 } 314 314