summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authoruebayasi <uebayasi@NetBSD.org>2010-11-13 08:55:13 +0000
committeruebayasi <uebayasi@NetBSD.org>2010-11-13 08:55:13 +0000
commitcff67190437c604c628b160da4df8a251b37cc89 (patch)
treebbf9685fa7029f03f0903d3b4cc60e137dcb5e23 /sys/dev
parent28bec5b3172f803161cf55e14e99dbc45f62662d (diff)
Include sys/proc.h for tsleep, wakeup.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ic/i82557.c7
-rw-r--r--sys/dev/ic/siisata.c7
2 files changed, 6 insertions, 8 deletions
diff --git a/sys/dev/ic/i82557.c b/sys/dev/ic/i82557.c
index 261c6313cfc..fd5cf4fe605 100644
--- a/sys/dev/ic/i82557.c
+++ b/sys/dev/ic/i82557.c
@@ -1,4 +1,4 @@
-/* $NetBSD: i82557.c,v 1.135 2010/04/05 07:19:34 joerg Exp $ */
+/* $NetBSD: i82557.c,v 1.136 2010/11/13 08:55:13 uebayasi Exp $ */
/*-
* Copyright (c) 1997, 1998, 1999, 2001, 2002 The NetBSD Foundation, Inc.
@@ -66,7 +66,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: i82557.c,v 1.135 2010/04/05 07:19:34 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: i82557.c,v 1.136 2010/11/13 08:55:13 uebayasi Exp $");
#include "rnd.h"
@@ -81,11 +81,10 @@ __KERNEL_RCSID(0, "$NetBSD: i82557.c,v 1.135 2010/04/05 07:19:34 joerg Exp $");
#include <sys/errno.h>
#include <sys/device.h>
#include <sys/syslog.h>
+#include <sys/proc.h>
#include <machine/endian.h>
-#include <uvm/uvm_extern.h>
-
#if NRND > 0
#include <sys/rnd.h>
#endif
diff --git a/sys/dev/ic/siisata.c b/sys/dev/ic/siisata.c
index 480b2fdb70b..2c17b81f659 100644
--- a/sys/dev/ic/siisata.c
+++ b/sys/dev/ic/siisata.c
@@ -1,4 +1,4 @@
-/* $NetBSD: siisata.c,v 1.12 2010/07/26 15:41:33 jakllsch Exp $ */
+/* $NetBSD: siisata.c,v 1.13 2010/11/13 09:00:00 uebayasi Exp $ */
/* from ahcisata_core.c */
@@ -79,7 +79,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: siisata.c,v 1.12 2010/07/26 15:41:33 jakllsch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: siisata.c,v 1.13 2010/11/13 09:00:00 uebayasi Exp $");
#include <sys/types.h>
#include <sys/malloc.h>
@@ -89,8 +89,7 @@ __KERNEL_RCSID(0, "$NetBSD: siisata.c,v 1.12 2010/07/26 15:41:33 jakllsch Exp $"
#include <sys/syslog.h>
#include <sys/disklabel.h>
#include <sys/buf.h>
-
-#include <uvm/uvm_extern.h>
+#include <sys/proc.h>
#include <dev/ata/atareg.h>
#include <dev/ata/satavar.h>