diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2004-06-17 17:16:53 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2004-06-17 17:16:53 +0000 |
commit | f3732fd15b5a493a090a0453f937a78949c65f7d (patch) | |
tree | fe8b297144afd6d6f7db41275c72cb5eb663ec02 /sys/sys/snoop.h | |
parent | c0d431fe315475c5fe50084db455416148d57914 (diff) | |
download | src-f3732fd15b5a493a090a0453f937a78949c65f7d.tar.gz src-f3732fd15b5a493a090a0453f937a78949c65f7d.zip |
Second half of the dev_t cleanup.
The big lines are:
NODEV -> NULL
NOUDEV -> NODEV
udev_t -> dev_t
udev2dev() -> findcdev()
Various minor adjustments including handling of userland access to kernel
space struct cdev etc.
Notes
Notes:
svn path=/head/; revision=130640
Diffstat (limited to 'sys/sys/snoop.h')
-rw-r--r-- | sys/sys/snoop.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/snoop.h b/sys/sys/snoop.h index 026dd7aa1eab..992be9b43aad 100644 --- a/sys/sys/snoop.h +++ b/sys/sys/snoop.h @@ -30,8 +30,8 @@ * detached from its current tty. */ -#define SNPSTTY _IOW('T', 90, udev_t) -#define SNPGTTY _IOR('T', 89, udev_t) +#define SNPSTTY _IOW('T', 90, dev_t) +#define SNPGTTY _IOR('T', 89, dev_t) /* * These values would be returned by FIONREAD ioctl |