aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorNate Lawson <njl@FreeBSD.org>2005-09-26 07:45:35 +0000
committerNate Lawson <njl@FreeBSD.org>2005-09-26 07:45:35 +0000
commit3d8d9f8f2dce3fdb7ba2c9d3e5cc548297e8fa3a (patch)
treec54b6ad83d3c9cb4b98d64ed66d2a99997e19332 /sys
parent727fbe77092ad0006ee405b98fcb1d86910945be (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/types.h b/sys/sys/types.h
index fa1e0bd3941a6..7a0edf29ae5aa 100644
--- a/sys/sys/types.h
+++ b/sys/sys/types.h
@@ -270,6 +270,7 @@ typedef __vm_size_t vm_size_t;
#ifdef _KERNEL
typedef int boolean_t;
typedef __cpumask_t cpumask_t;
+typedef struct device *device_t;
typedef __intfptr_t intfptr_t;
/*-
@@ -285,7 +286,6 @@ typedef __uint32_t intrmask_t; /* Interrupt mask (spl, xxx_imask...) */
typedef __uintfptr_t uintfptr_t;
typedef __uint64_t uoff_t;
typedef struct vm_page *vm_page_t;
-typedef struct device *device_t;
#define offsetof(type, field) __offsetof(type, field)