mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Alan Cox <alan@lxorguk.ukuu.org.uk>
To: linux-kernel@vger.kernel.org, torvalds@linux-foundation.org
Subject: [PATCH 22/24] icom: remove unused variables
Date: Wed, 01 Apr 2009 15:07:42 +0100	[thread overview]
Message-ID: <20090401140740.22882.65137.stgit@localhost.localdomain> (raw)
In-Reply-To: <20090401140241.22882.93477.stgit@localhost.localdomain>

From: Breno Leitao <leitao@linux.vnet.ibm.com>

Signed-off-by: Breno Leitao <leitao@linux.vnet.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Alan Cox <alan@lxorguk.ukuu.org.uk>
---

 drivers/serial/icom.c |   14 ++------------
 1 files changed, 2 insertions(+), 12 deletions(-)


diff --git a/drivers/serial/icom.c b/drivers/serial/icom.c
index 2b7531d..6579e2b 100644
--- a/drivers/serial/icom.c
+++ b/drivers/serial/icom.c
@@ -1098,7 +1098,6 @@ static void icom_set_termios(struct uart_port *port,
 {
 	int baud;
 	unsigned cflag, iflag;
-	int bits;
 	char new_config2;
 	char new_config3 = 0;
 	char tmp_byte;
@@ -1119,34 +1118,27 @@ static void icom_set_termios(struct uart_port *port,
 	switch (cflag & CSIZE) {
 	case CS5:		/* 5 bits/char */
 		new_config2 |= ICOM_ACFG_5BPC;
-		bits = 7;
 		break;
 	case CS6:		/* 6 bits/char */
 		new_config2 |= ICOM_ACFG_6BPC;
-		bits = 8;
 		break;
 	case CS7:		/* 7 bits/char */
 		new_config2 |= ICOM_ACFG_7BPC;
-		bits = 9;
 		break;
 	case CS8:		/* 8 bits/char */
 		new_config2 |= ICOM_ACFG_8BPC;
-		bits = 10;
 		break;
 	default:
-		bits = 10;
 		break;
 	}
 	if (cflag & CSTOPB) {
 		/* 2 stop bits */
 		new_config2 |= ICOM_ACFG_2STOP_BIT;
-		bits++;
 	}
 	if (cflag & PARENB) {
 		/* parity bit enabled */
 		new_config2 |= ICOM_ACFG_PARITY_ENAB;
 		trace(ICOM_PORT, "PARENB", 0);
-		bits++;
 	}
 	if (cflag & PARODD) {
 		/* odd parity */
@@ -1322,7 +1314,6 @@ static struct uart_driver icom_uart_driver = {
 static int __devinit icom_init_ports(struct icom_adapter *icom_adapter)
 {
 	u32 subsystem_id = icom_adapter->subsystem_id;
-	int retval = 0;
 	int i;
 	struct icom_port *icom_port;
 
@@ -1368,7 +1359,7 @@ static int __devinit icom_init_ports(struct icom_adapter *icom_adapter)
 		}
 	}
 
-	return retval;
+	return 0;
 }
 
 static void icom_port_active(struct icom_port *icom_port, struct icom_adapter *icom_adapter, int port_num)
@@ -1391,7 +1382,6 @@ static int __devinit icom_load_ports(struct icom_adapter *icom_adapter)
 {
 	struct icom_port *icom_port;
 	int port_num;
-	int retval;
 
 	for (port_num = 0; port_num < icom_adapter->numb_ports; port_num++) {
 
@@ -1405,7 +1395,7 @@ static int __devinit icom_load_ports(struct icom_adapter *icom_adapter)
 			icom_port->adapter = icom_adapter;
 
 			/* get port memory */
-			if ((retval = get_port_memory(icom_port)) != 0) {
+			if (get_port_memory(icom_port) != 0) {
 				dev_err(&icom_port->adapter->pci_dev->dev,
 					"Memory allocation for port FAILED\n");
 			}


  parent reply	other threads:[~2009-04-01 14:15 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-01 14:04 [PATCH 00/24] Series short description Alan Cox
2009-04-01 14:04 ` [PATCH 01/24] 8250_pnp.c: add another Wacom tablet Alan Cox
2009-04-01 14:04 ` [PATCH 02/24] serial: Update PNP IDs Alan Cox
2009-04-01 14:04 ` [PATCH 03/24] 8250_pci: add support for National Instruments 843x RS232 devices Alan Cox
2009-04-01 14:05 ` [PATCH 04/24] 8250_pci: add support for National Instruments legacy 8420 RS232 boards Alan Cox
2009-04-01 14:05 ` [PATCH 05/24] blackfin: BF538/9 serial uart support Alan Cox
2009-04-01 14:05 ` [PATCH 06/24] blackfin: Use unsigned long for flags with irq functions Alan Cox
2009-04-01 14:05 ` [PATCH 07/24] blackfin: Fix tty compile error in PIO mode Alan Cox
2009-04-01 14:05 ` [PATCH 08/24] Fix DMA rx ring buffer handling Alan Cox
2009-04-01 14:05 ` [PATCH 09/24] blackfin: Subtract ANOMALY_05000230 on quot Alan Cox
2009-04-01 14:05 ` [PATCH 10/24] applicom: Auto-load applicom module when device opened Alan Cox
2009-04-01 14:06 ` [PATCH 11/24] cyclades: Auto-load cyclades " Alan Cox
2009-04-01 14:06 ` [PATCH 12/24] specialix: Auto-load specialix " Alan Cox
2009-04-01 14:06 ` [PATCH 13/24] usb: Auto-load cdc_acm " Alan Cox
2009-04-01 14:06 ` [PATCH 14/24] riscom8: Auto-load riscom8 " Alan Cox
2009-04-01 14:06 ` [PATCH 15/24] ucc: Fix leaky error path Alan Cox
2009-04-01 14:06 ` [PATCH 16/24] isicom: isicom kref leak fix Alan Cox
2009-04-01 14:06 ` [PATCH 17/24] tty: moxa, fix refcounting in moxa_poll_port Alan Cox
2009-04-01 14:06 ` [PATCH 18/24] mxser: remove tty_port_tty_get from mxser_check_modem_status Alan Cox
2009-04-01 14:07 ` [PATCH 19/24] jsm: define init function as __devinit Alan Cox
2009-04-01 14:07 ` [PATCH 20/24] jsm: Fix the return variable and removing the unused retval Alan Cox
2009-04-01 14:07 ` [PATCH 21/24] mux: fix build problem Alan Cox
2009-04-01 14:07 ` Alan Cox [this message]
2009-04-01 14:07 ` [PATCH 23/24] PCI: quirks, don't mark one netmos as class other Alan Cox
2009-04-01 14:07 ` [PATCH 24/24] rio: addition has higher precedence than ?: Alan Cox

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090401140740.22882.65137.stgit@localhost.localdomain \
    --to=alan@lxorguk.ukuu.org.uk \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome