From: Heiko Carstens <heiko.carstens@de•ibm.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation•org>
Cc: linux-next@vger•kernel.org,
Martin Schwidefsky <schwidefsky@de•ibm.com>,
Jiri Slaby <jslaby@suse•cz>
Subject: [PATCH -next] tty: add missing tty_port_tty_get() call to raw3215_wakeup
Date: Tue, 17 Apr 2012 13:16:34 +0200 [thread overview]
Message-ID: <20120417111634.GA4382@osiris.boeblingen.de.ibm.com> (raw)
Fix compile error caused by "TTY: con3215, use tty from tty_port":
CC drivers/s390/char/con3215.o
drivers/s390/char/con3215.c: In function 'raw3215_wakeup':
drivers/s390/char/con3215.c:339:16: error: 'struct raw3215_info' has no member named 'tty'
make[1]: *** [drivers/s390/char/con3215.o] Error 1
make: *** [drivers/s390/char/] Error 2
Cc: Jiri Slaby <jslaby@suse•cz>
Cc: Martin Schwidefsky <schwidefsky@de•ibm.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de•ibm.com>
---
drivers/s390/char/con3215.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/drivers/s390/char/con3215.c b/drivers/s390/char/con3215.c
index e928e04..6c0116d 100644
--- a/drivers/s390/char/con3215.c
+++ b/drivers/s390/char/con3215.c
@@ -336,7 +336,11 @@ static inline void raw3215_try_io(struct raw3215_info *raw)
static void raw3215_wakeup(unsigned long data)
{
struct raw3215_info *raw = (struct raw3215_info *) data;
- tty_wakeup(raw->tty);
+ struct tty_struct *tty;
+
+ tty = tty_port_tty_get(&raw->port);
+ tty_wakeup(tty);
+ tty_kref_put(tty);
}
/*
--
1.7.9.6
next reply other threads:[~2012-04-17 11:16 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-17 11:16 Heiko Carstens [this message]
2012-04-17 12:35 ` [PATCH -next] tty: add missing tty_port_tty_get() call to raw3215_wakeup Jiri Slaby
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=20120417111634.GA4382@osiris.boeblingen.de.ibm.com \
--to=heiko.carstens@de$(echo .)ibm.com \
--cc=gregkh@linuxfoundation$(echo .)org \
--cc=jslaby@suse$(echo .)cz \
--cc=linux-next@vger$(echo .)kernel.org \
--cc=schwidefsky@de$(echo .)ibm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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