diff options
author | Bruce Evans <bde@FreeBSD.org> | 1995-12-10 15:55:34 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1995-12-10 15:55:34 +0000 |
commit | c73feca0b7ac475e04a1a97b525ad461b3eca29e (patch) | |
tree | f662b88f29ea0b27902ef1878e7b04370f7d3b1f /sys/dev/si | |
parent | d9f9371008a4433a269555c374912db62ef797c0 (diff) | |
download | src-c73feca0b7ac475e04a1a97b525ad461b3eca29e.tar.gz src-c73feca0b7ac475e04a1a97b525ad461b3eca29e.zip |
Removed new alias d_size_t for d_psize_t.
Removed old aliases d_rdwr_t and d_ttycv_t for d_read_t/d_write_t and
d_devtotty_t.
Sorted declarations of switch functions into switch order.
Removed duplicated comments and declarations of nonexistent switch
functions.
Notes
Notes:
svn path=/head/; revision=12731
Diffstat (limited to 'sys/dev/si')
-rw-r--r-- | sys/dev/si/si.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/si/si.c b/sys/dev/si/si.c index 9fe26bb10e2c..5cc1e18d9c6d 100644 --- a/sys/dev/si/si.c +++ b/sys/dev/si/si.c @@ -30,7 +30,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN * NO EVENT SHALL THE AUTHORS BE LIABLE. * - * $Id: si.c,v 1.24 1995/12/08 23:20:41 phk Exp $ + * $Id: si.c,v 1.25 1995/12/10 13:39:12 phk Exp $ */ #ifndef lint @@ -119,7 +119,7 @@ static d_read_t siread; static d_write_t siwrite; static d_ioctl_t siioctl; static d_stop_t sistop; -static d_ttycv_t sidevtotty; +static d_devtotty_t sidevtotty; #define CDEV_MAJOR 68 static struct cdevsw si_cdevsw = |