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/syscons | |
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/syscons')
-rw-r--r-- | sys/dev/syscons/syscons.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/syscons/syscons.c b/sys/dev/syscons/syscons.c index 6c3634d..dc628c7 100644 --- a/sys/dev/syscons/syscons.c +++ b/sys/dev/syscons/syscons.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: syscons.c,v 1.135 1995/12/08 11:15:28 julian Exp $ + * $Id: syscons.c,v 1.136 1995/12/10 13:39:18 phk Exp $ */ #include "sc.h" @@ -158,10 +158,10 @@ struct isa_driver scdriver = { static d_open_t scopen; static d_close_t scclose; -static d_rdwr_t scread; -static d_rdwr_t scwrite; +static d_read_t scread; +static d_write_t scwrite; static d_ioctl_t scioctl; -static d_ttycv_t scdevtotty; +static d_devtotty_t scdevtotty; static d_mmap_t scmmap; static struct cdevsw scdevsw = { |