[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1283101965-12161-1-git-send-email-mika.westerberg@iki.fi>
Date: Sun, 29 Aug 2010 20:12:45 +0300
From: Mika Westerberg <mika.westerberg@....fi>
To: linux-kernel@...r.kernel.org
Cc: Mika Westerberg <mika.westerberg@....fi>,
Alan Cox <alan@...ux.intel.com>,
Russell King <rmk+kernel@....linux.org.uk>
Subject: [PATCH] serial: amba-pl010: fix set_ldisc
Commit d87d9b7d1 ("tty: serial - fix tty referencing in set_ldisc") changed
set_ldisc to take ldisc number as parameter. This patch fixes AMBA PL010 driver
according the new prototype.
Signed-off-by: Mika Westerberg <mika.westerberg@....fi>
Cc: Alan Cox <alan@...ux.intel.com>
Cc: Russell King <rmk+kernel@....linux.org.uk>
---
drivers/serial/amba-pl010.c | 9 ++-------
1 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/drivers/serial/amba-pl010.c b/drivers/serial/amba-pl010.c
index 50441ff..2904aa0 100644
--- a/drivers/serial/amba-pl010.c
+++ b/drivers/serial/amba-pl010.c
@@ -472,14 +472,9 @@ pl010_set_termios(struct uart_port *port, struct ktermios *termios,
spin_unlock_irqrestore(&uap->port.lock, flags);
}
-static void pl010_set_ldisc(struct uart_port *port)
+static void pl010_set_ldisc(struct uart_port *port, int new)
{
- int line = port->line;
-
- if (line >= port->state->port.tty->driver->num)
- return;
-
- if (port->state->port.tty->ldisc->ops->num == N_PPS) {
+ if (new == N_PPS) {
port->flags |= UPF_HARDPPS_CD;
pl010_enable_ms(port);
} else
--
1.5.6.5
--
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