diff options
author | bde <bde@FreeBSD.org> | 1995-12-10 15:55:34 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-12-10 15:55:34 +0000 |
commit | 99e5039c72eb0b5010c09ee57fb090ef468688c7 (patch) | |
tree | f662b88f29ea0b27902ef1878e7b04370f7d3b1f /sys/dev/si | |
parent | ea83bba5aad7ea3d22e1e05e697b152bd0499edd (diff) | |
download | FreeBSD-src-99e5039c72eb0b5010c09ee57fb090ef468688c7.zip FreeBSD-src-99e5039c72eb0b5010c09ee57fb090ef468688c7.tar.gz |
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.
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 9fe26bb..5cc1e18 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 = |