summaryrefslogtreecommitdiff
path: root/sys/dev/softraid_crypto.c
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2010-05-18 04:41:15 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2010-05-18 04:41:15 +0000
commit2a8c476cc299b5156f773ee5184486606637e917 (patch)
tree30e6afac5430b625bb13529ef5157accc51637d9 /sys/dev/softraid_crypto.c
parent5f7844d39f199b58e0025efc5d45e6ab79446132 (diff)
dont let sys/ioctl.h imply that you get the ioctls in dkio.h. this
gets rid of #include <sys/dkio.h> in sys/ioctl.h and adds #include <sys/dkio.h> to the places that actually want and use the disk ioctls. this became an issue when krw@'s X build failed when he was testing a change to dkio.h. tested by krw@ help from and ok miod@
Diffstat (limited to 'sys/dev/softraid_crypto.c')
-rw-r--r--sys/dev/softraid_crypto.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/softraid_crypto.c b/sys/dev/softraid_crypto.c
index 970584f54f4..6cf972097e5 100644
--- a/sys/dev/softraid_crypto.c
+++ b/sys/dev/softraid_crypto.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: softraid_crypto.c,v 1.51 2010/04/18 16:57:48 jsing Exp $ */
+/* $OpenBSD: softraid_crypto.c,v 1.52 2010/05/18 04:41:14 dlg Exp $ */
/*
* Copyright (c) 2007 Marco Peereboom <marco@peereboom.us>
* Copyright (c) 2008 Hans-Joerg Hoexer <hshoexer@openbsd.org>
@@ -39,6 +39,7 @@
#include <sys/stat.h>
#include <sys/conf.h>
#include <sys/uio.h>
+#include <sys/dkio.h>
#include <crypto/cryptodev.h>
#include <crypto/cryptosoft.h>