diff options
author | Jack Steiner <steiner@sgi.com> | 2008-07-17 00:54:31 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-21 04:12:36 +0400 |
commit | b1ca7e7a0b35874b2a9cae60f8f5b78df575faa7 (patch) | |
tree | 74daf686e26a73f8fdfb4972db5b172d95dfab42 /drivers/serial/sn_console.c | |
parent | 87c25ef0a41ad7a8249cd3009bf65deb700d4ee3 (diff) | |
download | linux-b1ca7e7a0b35874b2a9cae60f8f5b78df575faa7.tar.xz |
- Fix compile errors in SGI console drivers (linux-next tree)
Fix compile errors in SGI console drivers caused by changes to the
tty_port structures in the linux-next tree.
Signed-off-by: Jack Steiner <steiner@sgi.com>
Acked-by: Alan Cox <alan@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/serial/sn_console.c')
-rw-r--r-- | drivers/serial/sn_console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/sn_console.c b/drivers/serial/sn_console.c index 019da2e05f0b..b73e3c0056cd 100644 --- a/drivers/serial/sn_console.c +++ b/drivers/serial/sn_console.c @@ -471,7 +471,7 @@ sn_receive_chars(struct sn_cons_port *port, unsigned long flags) if (port->sc_port.info) { /* The serial_core stuffs are initilized, use them */ - tty = port->sc_port.info->tty; + tty = port->sc_port.info->port.tty; } else { /* Not registered yet - can't pass to tty layer. */ |