diff options
author | Alan Cox <alan@redhat.com> | 2009-01-02 08:45:05 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-02 13:19:38 -0500 |
commit | 31f35939d1d9bcfb3099b32c67b896d2792603f9 (patch) | |
tree | 39b6ceaf0e7477e0357ff8235814f579adad3f28 /drivers/char/tty_port.c | |
parent | c9b3976e3fec266be25c5001a70aa0a890b6c476 (diff) |
tty_port: Add a port level carrier detect operation
This is the first step to generalising the various pieces of waiting logic
duplicated in all sorts of serial drivers.
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/tty_port.c')
-rw-r--r-- | drivers/char/tty_port.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/char/tty_port.c b/drivers/char/tty_port.c index c8f8024cb40e..f54e40cbf023 100644 --- a/drivers/char/tty_port.c +++ b/drivers/char/tty_port.c | |||
@@ -94,3 +94,20 @@ void tty_port_tty_set(struct tty_port *port, struct tty_struct *tty) | |||
94 | spin_unlock_irqrestore(&port->lock, flags); | 94 | spin_unlock_irqrestore(&port->lock, flags); |
95 | } | 95 | } |
96 | EXPORT_SYMBOL(tty_port_tty_set); | 96 | EXPORT_SYMBOL(tty_port_tty_set); |
97 | |||
98 | /** | ||
99 | * tty_port_carrier_raised - carrier raised check | ||
100 | * @port: tty port | ||
101 | * | ||
102 | * Wrapper for the carrier detect logic. For the moment this is used | ||
103 | * to hide some internal details. This will eventually become entirely | ||
104 | * internal to the tty port. | ||
105 | */ | ||
106 | |||
107 | int tty_port_carrier_raised(struct tty_port *port) | ||
108 | { | ||
109 | if (port->ops->carrier_raised == NULL) | ||
110 | return 1; | ||
111 | return port->ops->carrier_raised(port); | ||
112 | } | ||
113 | EXPORT_SYMBOL(tty_port_carrier_raised); | ||