Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/ic Include sys/proc.h for tsleep, wakeup.



details:   https://anonhg.NetBSD.org/src/rev/33705e02aa65
branches:  trunk
changeset: 758698:33705e02aa65
user:      uebayasi <uebayasi%NetBSD.org@localhost>
date:      Sat Nov 13 08:55:13 2010 +0000

description:
Include sys/proc.h for tsleep, wakeup.

diffstat:

 sys/dev/ic/i82557.c  |  7 +++----
 sys/dev/ic/siisata.c |  7 +++----
 2 files changed, 6 insertions(+), 8 deletions(-)

diffs (59 lines):

diff -r 82f7d86a7ed0 -r 33705e02aa65 sys/dev/ic/i82557.c
--- a/sys/dev/ic/i82557.c       Sat Nov 13 08:54:23 2010 +0000
+++ b/sys/dev/ic/i82557.c       Sat Nov 13 08:55:13 2010 +0000
@@ -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 @@
 #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 -r 82f7d86a7ed0 -r 33705e02aa65 sys/dev/ic/siisata.c
--- a/sys/dev/ic/siisata.c      Sat Nov 13 08:54:23 2010 +0000
+++ b/sys/dev/ic/siisata.c      Sat Nov 13 08:55:13 2010 +0000
@@ -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 @@
 #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>



Home | Main Index | Thread Index | Old Index