Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/pmax/pmax Remove trailing whitespace.



details:   https://anonhg.NetBSD.org/src/rev/941ab0cd7e60
branches:  trunk
changeset: 467453:941ab0cd7e60
user:      simonb <simonb%NetBSD.org@localhost>
date:      Thu Mar 25 01:17:51 1999 +0000

description:
Remove trailing whitespace.

diffstat:

 sys/arch/pmax/pmax/bus_dma.c        |  12 +++++-----
 sys/arch/pmax/pmax/clock.c          |   6 ++--
 sys/arch/pmax/pmax/conf.c           |   4 +-
 sys/arch/pmax/pmax/cpu.c            |  12 +++++-----
 sys/arch/pmax/pmax/dec_3100.c       |  20 ++++++++--------
 sys/arch/pmax/pmax/dec_3max.c       |  16 ++++++------
 sys/arch/pmax/pmax/dec_3max_subr.c  |   6 ++--
 sys/arch/pmax/pmax/dec_3max_subr.h  |   6 ++--
 sys/arch/pmax/pmax/dec_3maxplus.c   |  22 +++++++++---------
 sys/arch/pmax/pmax/dec_3min.c       |  38 +++++++++++++++---------------
 sys/arch/pmax/pmax/dec_kn02_subr.c  |   6 ++--
 sys/arch/pmax/pmax/dec_maxine.c     |  30 ++++++++++++------------
 sys/arch/pmax/pmax/disksubr.c       |  12 +++++-----
 sys/arch/pmax/pmax/kmin.h           |  20 ++++++++--------
 sys/arch/pmax/pmax/kn01.h           |  24 ++++++++++----------
 sys/arch/pmax/pmax/kn02.h           |  26 ++++++++++----------
 sys/arch/pmax/pmax/kn03.h           |  14 +++++-----
 sys/arch/pmax/pmax/kn230.h          |  16 ++++++------
 sys/arch/pmax/pmax/locore_machdep.S |   6 ++--
 sys/arch/pmax/pmax/machdep.c        |  44 ++++++++++++++++--------------------
 sys/arch/pmax/pmax/mainbus.c        |  14 +++++-----
 sys/arch/pmax/pmax/maxine.h         |  18 +++++++-------
 sys/arch/pmax/pmax/nameglue.h       |   6 ++--
 sys/arch/pmax/pmax/sysconf.c        |   4 +-
 sys/arch/pmax/pmax/turbochannel.h   |  16 ++++++------
 25 files changed, 197 insertions(+), 201 deletions(-)

diffs (truncated from 1438 to 300 lines):

diff -r d9d2fd604bf0 -r 941ab0cd7e60 sys/arch/pmax/pmax/bus_dma.c
--- a/sys/arch/pmax/pmax/bus_dma.c      Thu Mar 25 01:16:10 1999 +0000
+++ b/sys/arch/pmax/pmax/bus_dma.c      Thu Mar 25 01:17:51 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bus_dma.c,v 1.11 1999/03/24 05:51:09 mrg Exp $ */
+/*     $NetBSD: bus_dma.c,v 1.12 1999/03/25 01:17:51 simonb Exp $      */
 
 /*-
  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -71,7 +71,7 @@
 struct pmax_bus_dma_tag pmax_default_bus_dma_tag = {
        _bus_dmamap_create,
        _bus_dmamap_destroy,
-       _bus_dmamap_load,   
+       _bus_dmamap_load,
        _bus_dmamap_load_mbuf,
        _bus_dmamap_load_uio,
        _bus_dmamap_load_raw,
@@ -544,17 +544,17 @@
  */
 int
 _bus_dmamem_alloc(t, size, alignment, boundary, segs, nsegs, rsegs, flags)
-       bus_dma_tag_t t; 
+       bus_dma_tag_t t;
        bus_size_t size, alignment, boundary;
        bus_dma_segment_t *segs;
        int nsegs;
        int *rsegs;
-       int flags; 
+       int flags;
 {
        extern paddr_t avail_start, avail_end;
        vaddr_t curaddr, lastaddr;
        psize_t high;
-       vm_page_t m;    
+       vm_page_t m;
        struct pglist mlist;
        int curseg, error;
 
@@ -647,7 +647,7 @@
        bus_dma_segment_t *segs;
        int nsegs;
        size_t size;
-       caddr_t *kvap;  
+       caddr_t *kvap;
        int flags;
 {
        vaddr_t va;
diff -r d9d2fd604bf0 -r 941ab0cd7e60 sys/arch/pmax/pmax/clock.c
--- a/sys/arch/pmax/pmax/clock.c        Thu Mar 25 01:16:10 1999 +0000
+++ b/sys/arch/pmax/pmax/clock.c        Thu Mar 25 01:17:51 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: clock.c,v 1.25 1998/09/26 20:59:42 drochner Exp $ */
+/* $NetBSD: clock.c,v 1.26 1999/03/25 01:17:51 simonb Exp $ */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -44,7 +44,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.25 1998/09/26 20:59:42 drochner Exp $");
+__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.26 1999/03/25 01:17:51 simonb Exp $");
 
 #include <sys/param.h>
 #include <sys/kernel.h>
@@ -162,7 +162,7 @@
        /* nothing we can do */
 }
 
-/*  
+/*
  * Experiments (and  passing years) show that Decstation PROMS
  * assume the kernel uses the clock chip as a time-of-year clock.
  * The PROM assumes the clock is always set to 1972 or 1973, and contains
diff -r d9d2fd604bf0 -r 941ab0cd7e60 sys/arch/pmax/pmax/conf.c
--- a/sys/arch/pmax/pmax/conf.c Thu Mar 25 01:16:10 1999 +0000
+++ b/sys/arch/pmax/pmax/conf.c Thu Mar 25 01:17:51 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: conf.c,v 1.31 1998/11/17 22:41:05 jonathan Exp $       */
+/*     $NetBSD: conf.c,v 1.32 1999/03/25 01:17:51 simonb Exp $ */
 
 /*
  * Copyright (c) 1992, 1993
@@ -110,7 +110,7 @@
 int    nblkdev = sizeof(bdevsw) / sizeof(bdevsw[0]);
 
 /*
- * Swapdev is a fake block device implemented  in sw.c and only used 
+ * Swapdev is a fake block device implemented  in sw.c and only used
  * internally to get to swstrategy.  It cannot be provided to the
  * users, because the swstrategy routine munches the b_dev and b_blkno
  * entries before calling the appropriate driver.  This would horribly
diff -r d9d2fd604bf0 -r 941ab0cd7e60 sys/arch/pmax/pmax/cpu.c
--- a/sys/arch/pmax/pmax/cpu.c  Thu Mar 25 01:16:10 1999 +0000
+++ b/sys/arch/pmax/pmax/cpu.c  Thu Mar 25 01:17:51 1999 +0000
@@ -1,21 +1,21 @@
-/*     $NetBSD: cpu.c,v 1.10 1998/01/12 20:12:38 thorpej Exp $ */
+/*     $NetBSD: cpu.c,v 1.11 1999/03/25 01:17:52 simonb Exp $  */
 
 /*
  * Copyright (c) 1994, 1995 Carnegie-Mellon University.
  * All rights reserved.
  *
  * Author: Chris G. Demetriou
- * 
+ *
  * Permission to use, copy, modify and distribute this software and
  * its documentation is hereby granted, provided that both the copyright
  * notice and this permission notice appear in all copies of the
  * software, derivative works or modified versions, and any portions
  * thereof, and that both notices appear in supporting documentation.
- * 
- * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" 
- * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND 
+ *
+ * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
+ * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
- * 
+ *
  * Carnegie Mellon requests users of this software to return to
  *
  *  Software Distribution Coordinator  or  Software.Distribution%CS.CMU.EDU@localhost
diff -r d9d2fd604bf0 -r 941ab0cd7e60 sys/arch/pmax/pmax/dec_3100.c
--- a/sys/arch/pmax/pmax/dec_3100.c     Thu Mar 25 01:16:10 1999 +0000
+++ b/sys/arch/pmax/pmax/dec_3100.c     Thu Mar 25 01:17:51 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: dec_3100.c,v 1.6 1998/09/05 04:11:04 nisimura Exp $    */
+/*     $NetBSD: dec_3100.c,v 1.7 1999/03/25 01:17:52 simonb Exp $      */
 
 /*
  * Copyright (c) 1998 Jonathan Stone.  All rights reserved.
@@ -87,8 +87,8 @@
 #include <mips/mips/mips_mcclock.h>    /* mcclock CPUspeed estimation */
 
 #include <pmax/pmax/clockreg.h>
-#include <pmax/pmax/turbochannel.h> 
-#include <pmax/pmax/pmaxtype.h> 
+#include <pmax/pmax/turbochannel.h>
+#include <pmax/pmax/pmaxtype.h>
 #include <pmax/pmax/machdep.h>         /* XXXjrs replace with vectors */
 
 #include <pmax/pmax/kn01.h>
@@ -103,10 +103,10 @@
 void           dec_3100_os_init __P((void));
 void           dec_3100_bus_reset __P((void));
 
-void           dec_3100_enable_intr 
+void           dec_3100_enable_intr
                   __P ((u_int slotno, int (*handler) __P((intr_arg_t sc)),
                         intr_arg_t sc, int onoff));
-int            dec_3100_intr __P((u_int mask, u_int pc, 
+int            dec_3100_intr __P((u_int mask, u_int pc,
                              u_int statusReg, u_int causeReg));
 
 void           dec_3100_cons_init __P((void));
@@ -119,9 +119,9 @@
                         int (*handler) __P((intr_arg_t)), intr_arg_t arg));
 void   dec_3100_intr_disestablish __P((struct ibus_attach_args *ia));
 
-  
+
 /*
- * Fill in platform struct. 
+ * Fill in platform struct.
  */
 void
 dec_3100_init()
@@ -221,7 +221,7 @@
        unsigned statusReg;
        unsigned causeReg;
 {
-       register volatile struct chiptime *c = 
+       register volatile struct chiptime *c =
            (volatile struct chiptime *)MIPS_PHYS_TO_KSEG1(KN01_SYS_CLOCK);
        struct clockframe cf;
        int temp;
@@ -250,7 +250,7 @@
 
 #if NLE_PMAX > 0
        if (mask & MIPS_INT_MASK_1) {
-               /* 
+               /*
                 * tty interrupts were disabled by the splx() call
                 * that re-enables clock interrupts.  A slip or ppp driver
                 * manipulating if queues should have called splimp(),
@@ -292,7 +292,7 @@
 {
        printf("dec_3100_intr_distestablish: not implemented\n");
 }
-  
+
 
 /*
  * Handle memory errors.
diff -r d9d2fd604bf0 -r 941ab0cd7e60 sys/arch/pmax/pmax/dec_3max.c
--- a/sys/arch/pmax/pmax/dec_3max.c     Thu Mar 25 01:16:10 1999 +0000
+++ b/sys/arch/pmax/pmax/dec_3max.c     Thu Mar 25 01:17:51 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: dec_3max.c,v 1.6 1998/08/29 16:16:37 mrg Exp $ */
+/*     $NetBSD: dec_3max.c,v 1.7 1999/03/25 01:17:52 simonb Exp $      */
 
 /*
  * Copyright (c) 1998 Jonathan Stone.  All rights reserved.
@@ -73,7 +73,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: dec_3max.c,v 1.6 1998/08/29 16:16:37 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dec_3max.c,v 1.7 1999/03/25 01:17:52 simonb Exp $");
 
 #include <sys/types.h>
 #include <sys/systm.h>
@@ -90,8 +90,8 @@
 #include <mips/mips/mips_mcclock.h>    /* mcclock CPUspeed estimation */
 
 #include <pmax/pmax/clockreg.h>
-#include <pmax/pmax/turbochannel.h> 
-#include <pmax/pmax/pmaxtype.h> 
+#include <pmax/pmax/turbochannel.h>
+#include <pmax/pmax/pmaxtype.h>
 #include <pmax/pmax/machdep.h>         /* XXXjrs replace with vectors */
 
 #include <pmax/pmax/kn02.h>
@@ -104,10 +104,10 @@
 void           dec_3max_os_init __P((void));
 void           dec_3max_bus_reset __P((void));
 
-void           dec_3max_enable_intr 
+void           dec_3max_enable_intr
                   __P ((u_int slotno, int (*handler)  __P((intr_arg_t sc)),
                         intr_arg_t sc, int onoff));
-int            dec_3max_intr __P((u_int mask, u_int pc, 
+int            dec_3max_intr __P((u_int mask, u_int pc,
                              u_int statusReg, u_int causeReg));
 void           dec_3max_cons_init __P((void));
 void           dec_3max_device_register __P((struct device *, void *));
@@ -116,7 +116,7 @@
 
 
 /*
- * Fill in platform struct. 
+ * Fill in platform struct.
  */
 void
 dec_3max_init()
@@ -255,7 +255,7 @@
        unsigned causeReg;
 {
        register unsigned i, m;
-       register volatile struct chiptime *c = 
+       register volatile struct chiptime *c =
            (volatile struct chiptime *) MIPS_PHYS_TO_KSEG1(KN02_SYS_CLOCK);
        register unsigned csr;
        int temp;
diff -r d9d2fd604bf0 -r 941ab0cd7e60 sys/arch/pmax/pmax/dec_3max_subr.c
--- a/sys/arch/pmax/pmax/dec_3max_subr.c        Thu Mar 25 01:16:10 1999 +0000
+++ b/sys/arch/pmax/pmax/dec_3max_subr.c        Thu Mar 25 01:17:51 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: dec_3max_subr.c,v 1.4 1998/03/29 01:12:15 jonathan Exp $       */
+/*     $NetBSD: dec_3max_subr.c,v 1.5 1999/03/25 01:17:52 simonb Exp $ */
 
 /*
  * Copyright (c) 1998 Jonathan Stone.  All rights reserved.
@@ -32,7 +32,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: dec_3max_subr.c,v 1.4 1998/03/29 01:12:15 jonathan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dec_3max_subr.c,v 1.5 1999/03/25 01:17:52 simonb Exp $");
 
 #include <sys/types.h>
 #include <sys/systm.h>
@@ -43,7 +43,7 @@
 #include <pmax/pmax/dec_3max_subr.h>
 
 /*
- * the 3max and 3maxplus have compatible memory subsystems; 
+ * the 3max and 3maxplus have compatible memory subsystems;
  * we handle them both here.
  */
 
diff -r d9d2fd604bf0 -r 941ab0cd7e60 sys/arch/pmax/pmax/dec_3max_subr.h
--- a/sys/arch/pmax/pmax/dec_3max_subr.h        Thu Mar 25 01:16:10 1999 +0000
+++ b/sys/arch/pmax/pmax/dec_3max_subr.h        Thu Mar 25 01:17:51 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: dec_3max_subr.h,v 1.1 1998/03/30 09:02:03 jonathan Exp $       */
+/*     $NetBSD: dec_3max_subr.h,v 1.2 1999/03/25 01:17:52 simonb Exp $ */
 
 /*
  * Copyright (c) 1998 Jonathan Stone.  All rights reserved.
@@ -31,9 +31,9 @@
  */
 
 /*
- * the 3max and 3maxplus have compatible memory subsystems; 
+ * the 3max and 3maxplus have compatible memory subsystems;
  * we handle them both here.
- * used on both 



Home | Main Index | Thread Index | Old Index