Source-Changes-HG archive

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

[src/trunk]: src/sys/arch One semicolon only (;; -> ;)



details:   https://anonhg.NetBSD.org/src/rev/eaa7e91c30c5
branches:  trunk
changeset: 750537:eaa7e91c30c5
user:      mbalmer <mbalmer%NetBSD.org@localhost>
date:      Tue Jan 05 13:20:29 2010 +0000

description:
One semicolon only (;; -> ;)

diffstat:

 sys/arch/hp700/dev/apic.c       |  4 ++--
 sys/arch/powerpc/powerpc/trap.c |  6 +++---
 sys/arch/shark/shark/sequoia.c  |  6 +++---
 sys/arch/vax/vax/trap.c         |  6 +++---
 sys/arch/x86/x86/mpacpi.c       |  6 +++---
 5 files changed, 14 insertions(+), 14 deletions(-)

diffs (126 lines):

diff -r e54845bb1d9e -r eaa7e91c30c5 sys/arch/hp700/dev/apic.c
--- a/sys/arch/hp700/dev/apic.c Tue Jan 05 13:14:55 2010 +0000
+++ b/sys/arch/hp700/dev/apic.c Tue Jan 05 13:20:29 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: apic.c,v 1.5 2009/12/03 11:54:09 skrll Exp $   */
+/*     $NetBSD: apic.c,v 1.6 2010/01/05 13:20:29 mbalmer Exp $ */
 
 /*     $OpenBSD: apic.c,v 1.7 2007/10/06 23:50:54 krw Exp $    */
 
@@ -138,7 +138,7 @@
 #endif
        line = PCI_INTERRUPT_LINE(reg);
        if (sc->sc_irq[line] == 0)
-               sc->sc_irq[line] = hp700_intr_allocate_bit(&int_reg_cpu);;
+               sc->sc_irq[line] = hp700_intr_allocate_bit(&int_reg_cpu);
        *ihp = (line << APIC_INT_LINE_SHIFT) | sc->sc_irq[line];
        return (APIC_INT_IRQ(*ihp) == 0);
 }
diff -r e54845bb1d9e -r eaa7e91c30c5 sys/arch/powerpc/powerpc/trap.c
--- a/sys/arch/powerpc/powerpc/trap.c   Tue Jan 05 13:14:55 2010 +0000
+++ b/sys/arch/powerpc/powerpc/trap.c   Tue Jan 05 13:20:29 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.131 2009/11/21 17:40:29 rmind Exp $ */
+/*     $NetBSD: trap.c,v 1.132 2010/01/05 13:20:29 mbalmer Exp $       */
 
 /*
  * Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.131 2009/11/21 17:40:29 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.132 2010/01/05 13:20:29 mbalmer Exp $");
 
 #include "opt_altivec.h"
 #include "opt_ddb.h"
@@ -236,7 +236,7 @@
                }
 
                if (l->l_flag & LW_SA) {
-                       l->l_savp->savp_faultaddr = (vaddr_t)frame->dar;;
+                       l->l_savp->savp_faultaddr = (vaddr_t)frame->dar;
                        l->l_pflag |= LP_SA_PAGEFAULT;
                }
                rv = uvm_fault(map, trunc_page(frame->dar), ftype);
diff -r e54845bb1d9e -r eaa7e91c30c5 sys/arch/shark/shark/sequoia.c
--- a/sys/arch/shark/shark/sequoia.c    Tue Jan 05 13:14:55 2010 +0000
+++ b/sys/arch/shark/shark/sequoia.c    Tue Jan 05 13:20:29 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sequoia.c,v 1.10 2007/10/17 19:57:10 garbled Exp $     */
+/*     $NetBSD: sequoia.c,v 1.11 2010/01/05 13:20:29 mbalmer Exp $     */
 
 /*
  * Copyright 1997
@@ -40,7 +40,7 @@
 */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sequoia.c,v 1.10 2007/10/17 19:57:10 garbled Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sequoia.c,v 1.11 2010/01/05 13:20:29 mbalmer Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -130,7 +130,7 @@
 
 static struct timeval ledLastActive;      /* last time we get net activity */
 static int      ledColor;           /* present color of led */
-static int      ledBlockCount;;     /* reference count of block calles */                            
+static int      ledBlockCount;      /* reference count of block calles */                            
 int sequoia_index_cache = -1;       /* set to silly value so that we dont cache on init */
 
 static callout_t led_timo_ch;
diff -r e54845bb1d9e -r eaa7e91c30c5 sys/arch/vax/vax/trap.c
--- a/sys/arch/vax/vax/trap.c   Tue Jan 05 13:14:55 2010 +0000
+++ b/sys/arch/vax/vax/trap.c   Tue Jan 05 13:20:29 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.121 2009/12/10 14:13:53 matt Exp $     */
+/*     $NetBSD: trap.c,v 1.122 2010/01/05 13:20:30 mbalmer Exp $     */
 
 /*
  * Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@@ -33,7 +33,7 @@
  /* All bugs are subject to removal without further notice */
                
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.121 2009/12/10 14:13:53 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.122 2010/01/05 13:20:30 mbalmer Exp $");
 
 #include "opt_ddb.h"
 #include "opt_multiprocessor.h"
@@ -114,7 +114,7 @@
        u_int   sig = 0, type = frame->trap, code = 0;
        u_int   rv, addr;
        bool trapsig = true;
-       const bool usermode = USERMODE_P(frame);;
+       const bool usermode = USERMODE_P(frame);
        struct  lwp *l;
        struct  proc *p;
        struct  pcb *pcb;
diff -r e54845bb1d9e -r eaa7e91c30c5 sys/arch/x86/x86/mpacpi.c
--- a/sys/arch/x86/x86/mpacpi.c Tue Jan 05 13:14:55 2010 +0000
+++ b/sys/arch/x86/x86/mpacpi.c Tue Jan 05 13:20:29 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mpacpi.c,v 1.79 2009/11/04 14:39:17 toshii Exp $       */
+/*     $NetBSD: mpacpi.c,v 1.80 2010/01/05 13:20:30 mbalmer Exp $      */
 
 /*
  * Copyright (c) 2003 Wasabi Systems, Inc.
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mpacpi.c,v 1.79 2009/11/04 14:39:17 toshii Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mpacpi.c,v 1.80 2010/01/05 13:20:30 mbalmer Exp $");
 
 #include "acpica.h"
 #include "opt_acpi.h"
@@ -336,7 +336,7 @@
                break;
        case ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE:
                lop = (ACPI_MADT_LOCAL_APIC_OVERRIDE *)hdrp;
-               mpacpi_lapic_base = lop->Address;;
+               mpacpi_lapic_base = lop->Address;
        default:
                break;
        }



Home | Main Index | Thread Index | Old Index