* [PATCH 008/013] sh-sci: use to_sci_port() if possible
@ 2009-01-21 15:14 Magnus Damm
0 siblings, 0 replies; only message in thread
From: Magnus Damm @ 2009-01-21 15:14 UTC (permalink / raw)
To: linux-sh
--- 0007/drivers/serial/sh-sci.c
+++ work/drivers/serial/sh-sci.c 2009-01-20 19:25:11.000000000 +0900
@@ -616,7 +616,7 @@ static inline int sci_handle_breaks(stru
int copied = 0;
unsigned short status = sci_in(port, SCxSR);
struct tty_struct *tty = port->info->port.tty;
- struct sci_port *s = &sci_ports[port->line];
+ struct sci_port *s = to_sci_port(port);
if (uart_handle_break(port))
return 0;
@@ -873,7 +873,7 @@ static void sci_break_ctl(struct uart_po
static int sci_startup(struct uart_port *port)
{
- struct sci_port *s = &sci_ports[port->line];
+ struct sci_port *s = to_sci_port(port);
if (s->enable)
s->enable(port);
@@ -891,7 +891,7 @@ static int sci_startup(struct uart_port
static void sci_shutdown(struct uart_port *port)
{
- struct sci_port *s = &sci_ports[port->line];
+ struct sci_port *s = to_sci_port(port);
sci_stop_rx(port);
sci_stop_tx(port);
@@ -988,7 +988,7 @@ static int sci_request_port(struct uart_
static void sci_config_port(struct uart_port *port, int flags)
{
- struct sci_port *s = &sci_ports[port->line];
+ struct sci_port *s = to_sci_port(port);
port->type = s->type;
@@ -1006,7 +1006,7 @@ static void sci_config_port(struct uart_
static int sci_verify_port(struct uart_port *port, struct serial_struct *ser)
{
- struct sci_port *s = &sci_ports[port->line];
+ struct sci_port *s = to_sci_port(port);
if (ser->irq != s->irqs[SCIx_TXI_IRQ] || ser->irq > nr_irqs)
return -EINVAL;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-01-21 15:14 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-21 15:14 [PATCH 008/013] sh-sci: use to_sci_port() if possible Magnus Damm
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox