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

drivers: char: mem: Fix Missing blank line issues

Fixes "Missing a blank line after declarations" reported by
checkpatch.

This patch introduces no functional changes.

Signed-off-by: Rob Ward <robert.ward114@googlemail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Rob Ward and committed by
Greg Kroah-Hartman
6a0061ba 35b6c7e4

+2
+2
drivers/char/mem.c
··· 570 570 return -EFAULT; 571 571 while (count-- > 0 && i < 65536) { 572 572 char c; 573 + 573 574 if (__get_user(c, tmp)) { 574 575 if (tmp > buf) 575 576 break; ··· 626 625 627 626 while (iov_iter_count(iter)) { 628 627 size_t chunk = iov_iter_count(iter), n; 628 + 629 629 if (chunk > PAGE_SIZE) 630 630 chunk = PAGE_SIZE; /* Just for latency reasons */ 631 631 n = iov_iter_zero(chunk, iter);