greybus: es1: fix checkpatch warning about blank lines needed

Add a blank line in apb1_log_enable_read() to make checkpatch happy.

Oh, and it makes the code more readable too...

Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
This commit is contained in:
Greg Kroah-Hartman 2015-03-24 20:34:02 +01:00
parent 64b8a16f44
commit efdc43130c

View File

@ -573,6 +573,7 @@ static ssize_t apb1_log_enable_read(struct file *f, char __user *buf,
{
char tmp_buf[3];
int enable = apb1_log_task != NULL;
sprintf(tmp_buf, "%d\n", enable);
return simple_read_from_buffer(buf, count, ppos, tmp_buf, 3);
}