Source-Changes-HG archive

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

[src/trunk]: src/sys Some missing sys/device.h dependencies.



details:   https://anonhg.NetBSD.org/src/rev/79ede4d8ecfc
branches:  trunk
changeset: 758710:79ede4d8ecfc
user:      uebayasi <uebayasi%NetBSD.org@localhost>
date:      Sat Nov 13 15:35:49 2010 +0000

description:
Some missing sys/device.h dependencies.

diffstat:

 sys/arch/powerpc/powerpc/powerpc_machdep.c |  5 +++--
 sys/arch/zaurus/dev/zapm.c                 |  5 +++--
 sys/dev/ic/comvar.h                        |  3 ++-
 3 files changed, 8 insertions(+), 5 deletions(-)

diffs (68 lines):

diff -r 73cbf4e8f521 -r 79ede4d8ecfc sys/arch/powerpc/powerpc/powerpc_machdep.c
--- a/sys/arch/powerpc/powerpc/powerpc_machdep.c        Sat Nov 13 14:38:44 2010 +0000
+++ b/sys/arch/powerpc/powerpc/powerpc_machdep.c        Sat Nov 13 15:35:49 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: powerpc_machdep.c,v 1.42 2010/01/18 23:35:51 jmmv Exp $        */
+/*     $NetBSD: powerpc_machdep.c,v 1.43 2010/11/13 15:35:49 uebayasi Exp $    */
 
 /*
  * Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: powerpc_machdep.c,v 1.42 2010/01/18 23:35:51 jmmv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: powerpc_machdep.c,v 1.43 2010/11/13 15:35:49 uebayasi Exp $");
 
 #include "opt_altivec.h"
 #include "opt_modular.h"
@@ -50,6 +50,7 @@
 #include <sys/ucontext.h>
 #include <sys/cpu.h>
 #include <sys/module.h>
+#include <sys/device.h>
 
 int cpu_timebase;
 int cpu_printfataltraps;
diff -r 73cbf4e8f521 -r 79ede4d8ecfc sys/arch/zaurus/dev/zapm.c
--- a/sys/arch/zaurus/dev/zapm.c        Sat Nov 13 14:38:44 2010 +0000
+++ b/sys/arch/zaurus/dev/zapm.c        Sat Nov 13 15:35:49 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: zapm.c,v 1.9 2009/12/12 14:29:34 nonaka Exp $  */
+/*     $NetBSD: zapm.c,v 1.10 2010/11/13 15:35:50 uebayasi Exp $       */
 /*     $OpenBSD: zaurus_apm.c,v 1.13 2006/12/12 23:14:28 dim Exp $     */
 
 /*
@@ -18,13 +18,14 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: zapm.c,v 1.9 2009/12/12 14:29:34 nonaka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: zapm.c,v 1.10 2010/11/13 15:35:50 uebayasi Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/kernel.h>
 #include <sys/callout.h>
 #include <sys/selinfo.h> /* XXX: for apm_softc that is exposed here */
+#include <sys/device.h>
 
 #include <dev/hpc/apm/apmvar.h>
 
diff -r 73cbf4e8f521 -r 79ede4d8ecfc sys/dev/ic/comvar.h
--- a/sys/dev/ic/comvar.h       Sat Nov 13 14:38:44 2010 +0000
+++ b/sys/dev/ic/comvar.h       Sat Nov 13 15:35:49 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: comvar.h,v 1.70 2010/02/24 22:37:58 dyoung Exp $       */
+/*     $NetBSD: comvar.h,v 1.71 2010/11/13 15:35:50 uebayasi Exp $     */
 
 /*
  * Copyright (c) 1996 Christopher G. Demetriou.  All rights reserved.
@@ -43,6 +43,7 @@
 #include <sys/callout.h>
 #include <sys/timepps.h>
 #include <sys/mutex.h>
+#include <sys/device.h>
 
 #include <dev/ic/comreg.h>     /* for COM_NPORTS */
 



Home | Main Index | Thread Index | Old Index