[<prev] [next>] [day] [month] [year] [list]
Message-id: <32432w23aaa423@karneval.cz>
Date: Wed, 11 Oct 2006 23:14:17 +0200 (CEST)
From: Jiri Slaby <jirislaby@...il.com>
To: Andrew Morton <akpm@...l.org>
Cc: <linux-kernel@...r.kernel.org>, <support@...a.com.tw>
Subject: [PATCH 4/4] Char: mxser_new, clean macros
mxser_new, clean macros
Celan redundant macros.
Signed-off-by: Jiri Slaby <jirislaby@...il.com>
---
commit b2090dd621f58423950e8e79b0959889d26a8227
tree 5ebc4d2634f17976de978d236ae5f59d28c7ef06
parent f745e78bdca36ec5e27de25694a4417a45ffb5de
author Jiri Slaby <jirislaby@...il.com> Wed, 11 Oct 2006 22:59:14 +0200
committer Jiri Slaby <jirislaby@...il.com> Wed, 11 Oct 2006 22:59:14 +0200
drivers/char/mxser_new.c | 12 ++----------
1 files changed, 2 insertions(+), 10 deletions(-)
diff --git a/drivers/char/mxser_new.c b/drivers/char/mxser_new.c
index 8c62f80..d212ae6 100644
--- a/drivers/char/mxser_new.c
+++ b/drivers/char/mxser_new.c
@@ -54,11 +54,10 @@ #define MXSERMAJOR 174
#define MXSERCUMAJOR 175
#define MXSER_EVENT_TXLOW 1
-#define MXSER_EVENT_HANGUP 2
#define MXSER_BOARDS 4 /* Max. boards */
-#define MXSER_PORTS 32 /* Max. ports */
#define MXSER_PORTS_PER_BOARD 8 /* Max. ports per board */
+#define MXSER_PORTS (MXSER_BOARDS * MXSER_PORTS_PER_BOARD)
#define MXSER_ISR_PASS_LIMIT 99999L
#define MXSER_ERR_IOADDR -1
@@ -66,9 +65,6 @@ #define MXSER_ERR_IRQ -2
#define MXSER_ERR_IRQ_CONFLIT -3
#define MXSER_ERR_VECTOR -4
-#define SERIAL_TYPE_NORMAL 1
-#define SERIAL_TYPE_CALLOUT 2
-
#define WAKEUP_CHARS 256
#define UART_MCR_AFE 0x20
@@ -365,14 +361,10 @@ static void process_txrx_fifo(struct mxs
static void mxser_do_softint(void *private_)
{
struct mxser_port *info = private_;
- struct tty_struct *tty;
-
- tty = info->tty;
+ struct tty_struct *tty = info->tty;
if (test_and_clear_bit(MXSER_EVENT_TXLOW, &info->event))
tty_wakeup(tty);
- if (test_and_clear_bit(MXSER_EVENT_HANGUP, &info->event))
- tty_hangup(tty);
}
static unsigned char mxser_get_msr(int baseaddr, int mode, int port)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists