diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-11-28 16:13:30 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-11-28 16:13:30 +0000 |
commit | 18fa55b7c0a57038bc44966e200e42c95c1548cd (patch) | |
tree | f15be45f48de10a2cf3069a322d112dd49b3c21b /sys/dev | |
parent | c838246d36eaa84d99978e74064e65cd79f105d2 (diff) |
zap some typedefs.
vm_map_t -> struct vm_map *
vm_map_entry_t -> struct vm_map_entry *
simple_lock_data_t -> struct simplelock
(uvm not done yet, coming in the next commit)
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ccd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ccd.c b/sys/dev/ccd.c index 511a4f96176..c958ddb8c70 100644 --- a/sys/dev/ccd.c +++ b/sys/dev/ccd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ccd.c,v 1.45 2001/11/06 19:53:18 miod Exp $ */ +/* $OpenBSD: ccd.c,v 1.46 2001/11/28 16:13:29 art Exp $ */ /* $NetBSD: ccd.c,v 1.33 1996/05/05 04:21:14 thorpej Exp $ */ /*- @@ -199,7 +199,7 @@ struct ccddevice *ccddevs; int numccd = 0; /* A separate map so that locking on kernel_map won't happen in interrupts */ -static vm_map_t ccdmap; +static struct vm_map *ccdmap; /* * Set when a process need some kvm. |