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

staging: goldfish: Fix missing blank lines

Fix two instances of the following checkpatch warning:
WARNING: Missing a blank line after declarations

Signed-off-by: Garret Kelly <garret.kelly@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Garret Kelly and committed by
Greg Kroah-Hartman
ef323812 67c20cfb

+2
+1
drivers/staging/goldfish/goldfish_audio.c
··· 147 147 148 148 while (count > 0) { 149 149 ssize_t copy = count; 150 + 150 151 if (copy > WRITE_BUFFER_SIZE) 151 152 copy = WRITE_BUFFER_SIZE; 152 153 wait_event_interruptible(data->wait, (data->buffer_status &
+1
drivers/staging/goldfish/goldfish_nand.c
··· 424 424 { 425 425 struct goldfish_nand *nand = platform_get_drvdata(pdev); 426 426 int i; 427 + 427 428 for (i = 0; i < nand->mtd_count; i++) { 428 429 if (nand->mtd[i].name) 429 430 mtd_device_unregister(&nand->mtd[i]);