summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorNathan Binkert <nate@cvs.openbsd.org>2002-05-06 05:44:52 +0000
committerNathan Binkert <nate@cvs.openbsd.org>2002-05-06 05:44:52 +0000
commit7b8d2ef708153d246a6221937a821908e0e29bb4 (patch)
treed37be5313112220e03a2b5c40b27e7c1f0f6ab35 /sys/dev
parent87ba09105d3e85fc1003a5b53f6c99e4bc126ad3 (diff)
typedef for proc * for portability
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/usb/usb_port.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/usb_port.h b/sys/dev/usb/usb_port.h
index 2922833aac9..48444189e38 100644
--- a/sys/dev/usb/usb_port.h
+++ b/sys/dev/usb/usb_port.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: usb_port.h,v 1.33 2002/04/01 21:47:07 nate Exp $ */
+/* $OpenBSD: usb_port.h,v 1.34 2002/05/06 05:44:51 nate Exp $ */
/* $NetBSD: usb_port.h,v 1.44 2001/05/14 20:35:29 bouyer Exp $ */
/* $FreeBSD: src/sys/dev/usb/usb_port.h,v 1.21 1999/11/17 22:33:47 n_hibma Exp $ */
@@ -276,6 +276,7 @@ typedef int usb_malloc_type;
#define realloc usb_realloc
void *usb_realloc(void *, u_int, int, int);
+typedef struct proc *usb_proc_ptr;
typedef struct device *device_ptr_t;
#define USBBASEDEVICE struct device
#define USBDEV(bdev) (&(bdev))