Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 852e99d2 authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds
Browse files

tty: bring ldisc into CodingStyle

parent f2c4c65c
Loading
Loading
Loading
Loading
+9 −13
Original line number Diff line number Diff line
@@ -325,7 +325,6 @@ struct tty_ldisc *tty_ldisc_ref_wait(struct tty_struct *tty)
	WARN_ON(tty->ldisc->refcount == 0);
	return tty->ldisc;
}

EXPORT_SYMBOL_GPL(tty_ldisc_ref_wait);

/**
@@ -345,7 +344,6 @@ struct tty_ldisc *tty_ldisc_ref(struct tty_struct *tty)
		return tty->ldisc;
	return NULL;
}

EXPORT_SYMBOL_GPL(tty_ldisc_ref);

/**
@@ -373,7 +371,6 @@ void tty_ldisc_deref(struct tty_ldisc *ld)
		wake_up(&tty_ldisc_wait);
	spin_unlock_irqrestore(&tty_ldisc_lock, flags);
}

EXPORT_SYMBOL_GPL(tty_ldisc_deref);

/**
@@ -413,7 +410,6 @@ void tty_ldisc_flush(struct tty_struct *tty)
	}
	tty_buffer_flush(tty);
}

EXPORT_SYMBOL_GPL(tty_ldisc_flush);

/**
@@ -841,8 +837,8 @@ int tty_ldisc_setup(struct tty_struct *tty, struct tty_struct *o_tty)
 *	@tty: tty being shut down
 *	@o_tty: pair tty for pty/tty pairs
 *
 *	Called during the final close of a tty/pty pair in order to shut down the
 *	line discpline layer. On exit the ldisc assigned is N_TTY and the
 *	Called during the final close of a tty/pty pair in order to shut down
 *	the line discpline layer. On exit the ldisc assigned is N_TTY and the
 *	ldisc has not been opened.
 */