diff options
| author | Alexander Viro <viro@www.linux.org.uk> | 2003-04-23 04:19:46 -0700 |
|---|---|---|
| committer | Christoph Hellwig <hch@lst.de> | 2003-04-23 04:19:46 -0700 |
| commit | 2b4107a8038d2313e7a0eda367f15356581aba08 (patch) | |
| tree | e4904953697cdb5c70983ed914179f0fc83c4460 /include/linux/tty.h | |
| parent | 50dceaae05bc726f98ecbcc1dca8317a8d759af0 (diff) | |
[PATCH] tty cleanups (11/12)
tty->device switched to dev_t
There are very few uses of tty->device left by now; most of
them actually want dev_t (process accounting, proc/<pid>/stat, several
ioctls, slip.c logics, etc.) and the rest will go away shortly.
Diffstat (limited to 'include/linux/tty.h')
| -rw-r--r-- | include/linux/tty.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/tty.h b/include/linux/tty.h index eaa682168a7a..d7948e7ad0eb 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h @@ -266,7 +266,7 @@ struct tty_struct { char name[64]; int pgrp; int session; - kdev_t device; + dev_t device; unsigned long flags; int count; struct winsize winsize; |
