Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752804AbcLFSIH (ORCPT ); Tue, 6 Dec 2016 13:08:07 -0500 Received: from mail-wm0-f68.google.com ([74.125.82.68]:35170 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751327AbcLFSIG (ORCPT ); Tue, 6 Dec 2016 13:08:06 -0500 From: Fernando Apesteguia To: lidza.louina@gmail.com Cc: markh@compro.net, gregkh@linuxfoundation.org, driverdev-devel@linuxdriverproject.org, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, Fernando Apesteguia Subject: [PATCH] staging: dgnc: fix blank line after '{' warnings. Date: Tue, 6 Dec 2016 19:07:32 +0100 Message-Id: <1481047652-19142-1-git-send-email-fernando.apesteguia@gmail.com> X-Mailer: git-send-email 2.7.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1219 Lines: 45 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 --- drivers/staging/dgnc/dgnc_tty.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/drivers/staging/dgnc/dgnc_tty.c b/drivers/staging/dgnc/dgnc_tty.c index af4bc86..8bca929 100644 --- a/drivers/staging/dgnc/dgnc_tty.c +++ b/drivers/staging/dgnc/dgnc_tty.c @@ -376,9 +376,7 @@ static void dgnc_wmove(struct channel_t *ch, char *buf, uint n) } if (n > 0) { - /* Move rest of data. */ - remain = n; memcpy(ch->ch_wqueue + head, buf, remain); head += remain; @@ -1022,9 +1020,7 @@ static int dgnc_tty_open(struct tty_struct *tty, struct file *file) /* Initialize if neither terminal or printer is open. */ if (!((ch->ch_tun.un_flags | ch->ch_pun.un_flags) & UN_ISOPEN)) { - /* Flush input queues. */ - ch->ch_r_head = 0; ch->ch_r_tail = 0; ch->ch_e_head = 0; @@ -1623,9 +1619,7 @@ static int dgnc_tty_write(struct tty_struct *tty, } if (n > 0) { - /* Move rest of data. */ - remain = n; memcpy(ch->ch_wqueue + head, buf, remain); head += remain; -- 2.7.4