*     Return a refcount protected tty instance or NULL if the port is not
  *     associated with a tty (eg due to close or hangup)
  */
-
 struct tty_struct *tty_port_tty_get(struct tty_port *port)
 {
        unsigned long flags;
  *     Associate the port and tty pair. Manages any internal refcounts.
  *     Pass NULL to deassociate a port
  */
-
 void tty_port_tty_set(struct tty_port *port, struct tty_struct *tty)
 {
        unsigned long flags;
  *
  *     Caller holds tty lock.
  */
-
 void tty_port_hangup(struct tty_port *port)
 {
        struct tty_struct *tty;
  *     to hide some internal details. This will eventually become entirely
  *     internal to the tty port.
  */
-
 int tty_port_carrier_raised(struct tty_port *port)
 {
        if (port->ops->carrier_raised == NULL)
  *     to hide some internal details. This will eventually become entirely
  *     internal to the tty port.
  */
-
 void tty_port_raise_dtr_rts(struct tty_port *port)
 {
        if (port->ops->dtr_rts)
  *     to hide some internal details. This will eventually become entirely
  *     internal to the tty port.
  */
-
 void tty_port_lower_dtr_rts(struct tty_port *port)
 {
        if (port->ops->dtr_rts)
  *      NB: May drop and reacquire tty lock when blocking, so tty and tty_port
  *      may have changed state (eg., may have been hung up).
  */
-
 int tty_port_block_til_ready(struct tty_port *port,
                                struct tty_struct *tty, struct file *filp)
 {