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

staging: dgnc: fix blank line after '{' warnings.

Remove blank lines between open brace and comment.
Remove blank lines after comment in line with the rest of the comments
of the file.

Signed-off-by: Fernando Apesteguia <fernando.apesteguia@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Fernando Apesteguia and committed by
Greg Kroah-Hartman
1100a3b0 06f2eb5f

-6
-6
drivers/staging/dgnc/dgnc_tty.c
··· 376 376 } 377 377 378 378 if (n > 0) { 379 - 380 379 /* Move rest of data. */ 381 - 382 380 remain = n; 383 381 memcpy(ch->ch_wqueue + head, buf, remain); 384 382 head += remain; ··· 1020 1022 /* Initialize if neither terminal or printer is open. */ 1021 1023 1022 1024 if (!((ch->ch_tun.un_flags | ch->ch_pun.un_flags) & UN_ISOPEN)) { 1023 - 1024 1025 /* Flush input queues. */ 1025 - 1026 1026 ch->ch_r_head = 0; 1027 1027 ch->ch_r_tail = 0; 1028 1028 ch->ch_e_head = 0; ··· 1619 1623 } 1620 1624 1621 1625 if (n > 0) { 1622 - 1623 1626 /* Move rest of data. */ 1624 - 1625 1627 remain = n; 1626 1628 memcpy(ch->ch_wqueue + head, buf, remain); 1627 1629 head += remain;