summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2001-10-04 07:25:16 +0000
committerbde <bde@FreeBSD.org>2001-10-04 07:25:16 +0000
commit1e25e4053df2331cca231188fba97ff83bab315f (patch)
tree8fedfb790ac0bfc90bb5496eb9e5cdcd4154f0d8
parentd46fa27980b3d375062a788d8c25bc6695cb14fe (diff)
downloadFreeBSD-src-1e25e4053df2331cca231188fba97ff83bab315f.zip
FreeBSD-src-1e25e4053df2331cca231188fba97ff83bab315f.tar.gz
Fixed style bugs (indentation errors, missing punctuation, and unsorting)
in rev.1.61.
-rw-r--r--sys/sys/tty.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/sys/tty.h b/sys/sys/tty.h
index 70946bc..82109bd 100644
--- a/sys/sys/tty.h
+++ b/sys/sys/tty.h
@@ -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
OpenPOWER on IntegriCloud