Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/pmax/dev Remove a few unnecessary header files.



details:   https://anonhg.NetBSD.org/src/rev/fd94594dae23
branches:  trunk
changeset: 476086:fd94594dae23
user:      simonb <simonb%NetBSD.org@localhost>
date:      Sun Sep 05 11:34:29 1999 +0000

description:
Remove a few unnecessary header files.

diffstat:

 sys/arch/pmax/dev/bt459.c       |  6 ++----
 sys/arch/pmax/dev/bt478.c       |  5 +----
 sys/arch/pmax/dev/cfb.c         |  4 +---
 sys/arch/pmax/dev/fb.c          |  7 +------
 sys/arch/pmax/dev/ims332.c      |  5 ++---
 sys/arch/pmax/dev/mfb.c         |  5 ++---
 sys/arch/pmax/dev/pm.c          |  9 ++-------
 sys/arch/pmax/dev/px.c          |  6 ++----
 sys/arch/pmax/dev/qvss_compat.c |  3 +--
 sys/arch/pmax/dev/sfb.c         |  4 +---
 sys/arch/pmax/dev/xcfb.c        |  7 +------
 11 files changed, 16 insertions(+), 45 deletions(-)

diffs (258 lines):

diff -r df9e089eab29 -r fd94594dae23 sys/arch/pmax/dev/bt459.c
--- a/sys/arch/pmax/dev/bt459.c Sun Sep 05 11:19:01 1999 +0000
+++ b/sys/arch/pmax/dev/bt459.c Sun Sep 05 11:34:29 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bt459.c,v 1.17 1999/04/24 08:01:01 simonb Exp $        */
+/*     $NetBSD: bt459.c,v 1.18 1999/09/05 11:34:29 simonb Exp $        */
 
 /*-
  * Copyright (c) 1992, 1993
@@ -81,13 +81,11 @@
  */
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: bt459.c,v 1.17 1999/04/24 08:01:01 simonb Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bt459.c,v 1.18 1999/09/05 11:34:29 simonb Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/kernel.h>
 #include <sys/device.h>
-#include <sys/select.h>
 
 #include <machine/bus.h>                       /*  wbflush() */
 
diff -r df9e089eab29 -r fd94594dae23 sys/arch/pmax/dev/bt478.c
--- a/sys/arch/pmax/dev/bt478.c Sun Sep 05 11:19:01 1999 +0000
+++ b/sys/arch/pmax/dev/bt478.c Sun Sep 05 11:34:29 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bt478.c,v 1.10 1999/04/24 08:01:02 simonb Exp $        */
+/*     $NetBSD: bt478.c,v 1.11 1999/09/05 11:34:29 simonb Exp $        */
 
 /*-
  * Copyright (c) 1992, 1993
@@ -58,14 +58,11 @@
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/kernel.h>
 #include <sys/device.h>
-#include <sys/select.h>
 
 #include <machine/bus.h>                       /*  wbflush() */
 
 #include <mips/cpuregs.h>
-#include <machine/pmioctl.h>
 
 #include <machine/fbio.h>
 #include <machine/fbvar.h>
diff -r df9e089eab29 -r fd94594dae23 sys/arch/pmax/dev/cfb.c
--- a/sys/arch/pmax/dev/cfb.c   Sun Sep 05 11:19:01 1999 +0000
+++ b/sys/arch/pmax/dev/cfb.c   Sun Sep 05 11:34:29 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cfb.c,v 1.33 1999/07/25 22:50:28 ad Exp $      */
+/*     $NetBSD: cfb.c,v 1.34 1999/09/05 11:34:29 simonb Exp $  */
 
 /*-
  * Copyright (c) 1992, 1993
@@ -86,10 +86,8 @@
 #if NCFB > 0
 #include <sys/param.h>
 #include <sys/systm.h>                                 /* printf() */
-#include <sys/kernel.h>
 #include <sys/errno.h>
 #include <sys/fcntl.h>
-#include <sys/malloc.h>
 #include <sys/device.h>
 #include <dev/tc/tcvar.h>
 
diff -r df9e089eab29 -r fd94594dae23 sys/arch/pmax/dev/fb.c
--- a/sys/arch/pmax/dev/fb.c    Sun Sep 05 11:19:01 1999 +0000
+++ b/sys/arch/pmax/dev/fb.c    Sun Sep 05 11:34:29 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: fb.c,v 1.27 1999/07/28 17:13:54 ad Exp $       */
+/*     $NetBSD: fb.c,v 1.28 1999/09/05 11:34:30 simonb Exp $   */
 
 /*-
  * Copyright (c) 1992, 1993
@@ -67,14 +67,9 @@
 #include <sys/device.h>
 #include <sys/poll.h>
 #include <sys/tty.h>
-#include <sys/time.h>
-#include <sys/kernel.h>
 #include <sys/ioctl.h>
 #include <sys/file.h>
-#include <sys/vnode.h>
 #include <sys/errno.h>
-#include <sys/proc.h>
-#include <sys/mman.h>
 #include <sys/syslog.h>
 #include <sys/malloc.h>
 
diff -r df9e089eab29 -r fd94594dae23 sys/arch/pmax/dev/ims332.c
--- a/sys/arch/pmax/dev/ims332.c        Sun Sep 05 11:19:01 1999 +0000
+++ b/sys/arch/pmax/dev/ims332.c        Sun Sep 05 11:34:29 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ims332.c,v 1.9 1999/04/24 08:01:04 simonb Exp $        */
+/*     $NetBSD: ims332.c,v 1.10 1999/09/05 11:34:30 simonb Exp $       */
 
 /*-
  * Copyright (c) 1992, 1993, 1995
@@ -40,12 +40,11 @@
  */
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: ims332.c,v 1.9 1999/04/24 08:01:04 simonb Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ims332.c,v 1.10 1999/09/05 11:34:30 simonb Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/device.h>
-#include <sys/kernel.h>
 #include <sys/errno.h>
 
 #include <machine/fbio.h>
diff -r df9e089eab29 -r fd94594dae23 sys/arch/pmax/dev/mfb.c
--- a/sys/arch/pmax/dev/mfb.c   Sun Sep 05 11:19:01 1999 +0000
+++ b/sys/arch/pmax/dev/mfb.c   Sun Sep 05 11:34:29 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mfb.c,v 1.38 1999/07/25 22:50:28 ad Exp $      */
+/*     $NetBSD: mfb.c,v 1.39 1999/09/05 11:34:30 simonb Exp $  */
 
 /*-
  * Copyright (c) 1992, 1993
@@ -81,13 +81,12 @@
  */
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: mfb.c,v 1.38 1999/07/25 22:50:28 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mfb.c,v 1.39 1999/09/05 11:34:30 simonb Exp $");
 
 #include "fb.h"
 #include "mfb.h"
 #if NMFB > 0
 #include <sys/param.h>
-#include <sys/kernel.h>
 #include <sys/fcntl.h>
 #include <sys/errno.h>
 #include <sys/device.h>
diff -r df9e089eab29 -r fd94594dae23 sys/arch/pmax/dev/pm.c
--- a/sys/arch/pmax/dev/pm.c    Sun Sep 05 11:19:01 1999 +0000
+++ b/sys/arch/pmax/dev/pm.c    Sun Sep 05 11:34:29 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pm.c,v 1.28 1999/07/25 22:50:28 ad Exp $       */
+/*     $NetBSD: pm.c,v 1.29 1999/09/05 11:34:30 simonb Exp $   */
 
 /*-
  * Copyright (c) 1992, 1993
@@ -56,19 +56,14 @@
  */
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: pm.c,v 1.28 1999/07/25 22:50:28 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pm.c,v 1.29 1999/09/05 11:34:30 simonb Exp $");
 
 
 #include <sys/param.h>
-#include <sys/time.h>
 #include <sys/device.h>
-#include <sys/kernel.h>
 #include <sys/ioctl.h>
 #include <sys/file.h>
 #include <sys/errno.h>
-#include <sys/proc.h>
-#include <sys/mman.h>
-#include <sys/malloc.h>
 #include <sys/systm.h>
 
 #include <vm/vm.h>
diff -r df9e089eab29 -r fd94594dae23 sys/arch/pmax/dev/px.c
--- a/sys/arch/pmax/dev/px.c    Sun Sep 05 11:19:01 1999 +0000
+++ b/sys/arch/pmax/dev/px.c    Sun Sep 05 11:34:29 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: px.c,v 1.14 1999/07/25 22:50:29 ad Exp $ */
+/*     $NetBSD: px.c,v 1.15 1999/09/05 11:34:30 simonb Exp $ */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -43,7 +43,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: px.c,v 1.14 1999/07/25 22:50:29 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: px.c,v 1.15 1999/09/05 11:34:30 simonb Exp $");
 
 /*
  * px.c: driver for the DEC TURBOchannel 2D and 3D accelerated framebuffers
@@ -55,8 +55,6 @@
 #include <sys/systm.h>
 #include <sys/device.h>
 #include <sys/poll.h>
-#include <sys/time.h>
-#include <sys/kernel.h>
 #include <sys/ioctl.h>
 #include <sys/file.h>
 #include <sys/vnode.h>
diff -r df9e089eab29 -r fd94594dae23 sys/arch/pmax/dev/qvss_compat.c
--- a/sys/arch/pmax/dev/qvss_compat.c   Sun Sep 05 11:19:01 1999 +0000
+++ b/sys/arch/pmax/dev/qvss_compat.c   Sun Sep 05 11:34:29 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: qvss_compat.c,v 1.19 1999/07/25 22:50:29 ad Exp $      */
+/*     $NetBSD: qvss_compat.c,v 1.20 1999/09/05 11:34:30 simonb Exp $  */
 
 /*-
  * Copyright (c) 1992, 1993
@@ -67,7 +67,6 @@
 #include <sys/systm.h>
 #include <sys/device.h>
 #include <sys/select.h>
-#include <sys/time.h>
 #include <sys/kernel.h>
 #include <sys/proc.h>
 #include <sys/mman.h>
diff -r df9e089eab29 -r fd94594dae23 sys/arch/pmax/dev/sfb.c
--- a/sys/arch/pmax/dev/sfb.c   Sun Sep 05 11:19:01 1999 +0000
+++ b/sys/arch/pmax/dev/sfb.c   Sun Sep 05 11:34:29 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sfb.c,v 1.32 1999/07/25 22:50:29 ad Exp $      */
+/*     $NetBSD: sfb.c,v 1.33 1999/09/05 11:34:30 simonb Exp $  */
 
 /*-
  * Copyright (c) 1992, 1993
@@ -85,11 +85,9 @@
 
 #include <sys/param.h>
 #include <sys/systm.h>                                 /* printf() */
-#include <sys/kernel.h>
 #include <sys/errno.h>
 #include <sys/device.h>
 #include <sys/fcntl.h>
-#include <sys/malloc.h>
 #include <dev/tc/tcvar.h>
 
 #include <machine/autoconf.h>
diff -r df9e089eab29 -r fd94594dae23 sys/arch/pmax/dev/xcfb.c
--- a/sys/arch/pmax/dev/xcfb.c  Sun Sep 05 11:19:01 1999 +0000
+++ b/sys/arch/pmax/dev/xcfb.c  Sun Sep 05 11:34:29 1999 +0000
@@ -1,4 +1,4 @@
- /*    $NetBSD: xcfb.c,v 1.27 1999/07/25 22:50:29 ad Exp $     */
+ /*    $NetBSD: xcfb.c,v 1.28 1999/09/05 11:34:30 simonb Exp $ */
 
 /*-
  * Copyright (c) 1992, 1993
@@ -91,14 +91,9 @@
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/time.h>
-#include <sys/kernel.h>
 #include <sys/ioctl.h>
 #include <sys/file.h>
 #include <sys/errno.h>
-#include <sys/proc.h>
-#include <sys/mman.h>
-#include <sys/malloc.h>
 
 #include <vm/vm.h>
 



Home | Main Index | Thread Index | Old Index