Fixed style bugs (indentation errors, missing punctuation, and unsorting)

in rev.1.61.
This commit is contained in:
Bruce Evans 2001-10-04 07:25:16 +00:00
parent 152bd66c13
commit b228f1f47a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=84440

View File

@ -75,9 +75,9 @@ struct tty {
long t_outcc; /* Output queue statistics. */
int t_line; /* Interface to device drivers. */
union {
dev_t t_kdev; /* Device. */
udev_t t_udev; /* Userland (sysctl) instance */
void *t_devp; /* Keep user/kernel size in sync */
dev_t t_kdev; /* Device. */
udev_t t_udev; /* Userland (sysctl) instance. */
void *t_devp; /* Keep user/kernel size in sync. */
} ttyu;
int t_state; /* Device and driver (TS*) state. */
int t_flags; /* Tty flags. */
@ -109,9 +109,9 @@ struct tty {
SLIST_ENTRY(tty) t_list; /* Global chain of ttys for pstat(8) */
};
#define t_dev ttyu.t_kdev
#define t_cc t_termios.c_cc
#define t_cflag t_termios.c_cflag
#define t_dev ttyu.t_kdev
#define t_iflag t_termios.c_iflag
#define t_ispeed t_termios.c_ispeed
#define t_lflag t_termios.c_lflag