Source-Changes-HG archive

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

[src/trunk]: src/sys Remove duplicate ;



details:   https://anonhg.NetBSD.org/src/rev/5cc81f577ff5
branches:  trunk
changeset: 323252:5cc81f577ff5
user:      maya <maya%NetBSD.org@localhost>
date:      Wed Jun 06 01:49:07 2018 +0000

description:
Remove duplicate ;

diffstat:

 sys/arch/arm/imx/imx51_esdhc.c               |  12 ++++++------
 sys/arch/cobalt/cobalt/interrupt.c           |   6 +++---
 sys/arch/evbmips/rmixl/machdep.c             |   6 +++---
 sys/arch/luna68k/dev/omrasops.c              |   8 ++++----
 sys/arch/mips/mips/pmap_machdep.c            |   6 +++---
 sys/arch/sparc64/sparc64/cpu.c               |   6 +++---
 sys/arch/usermode/target/i386/cpu_i386.c     |   6 +++---
 sys/arch/usermode/target/x86_64/cpu_x86_64.c |   6 +++---
 sys/arch/vax/vsa/lcg.c                       |   6 +++---
 sys/dev/acpi/wmi/wmi_hp.c                    |   6 +++---
 sys/dev/filemon/filemon.c                    |   6 +++---
 sys/dev/i2c/ibmhawk.c                        |   4 ++--
 sys/dev/pci/coram.c                          |   6 +++---
 sys/dev/pci/cy82c693.c                       |  18 +++++++++---------
 sys/dev/pci/if_iwm.c                         |   6 +++---
 sys/dev/pci/radeonfb.c                       |   6 +++---
 sys/dev/usb/ehci.c                           |   8 ++++----
 sys/dev/usb/ohci.c                           |   8 ++++----
 sys/fs/udf/udf_subr.c                        |   6 +++---
 sys/net/if_strip.c                           |   6 +++---
 sys/opencrypto/crypto.c                      |  12 ++++++------
 sys/rump/dev/lib/libpci/pci_at_mainbus.c     |   6 +++---
 sys/ufs/lfs/lfs_segment.c                    |   6 +++---
 23 files changed, 83 insertions(+), 83 deletions(-)

diffs (truncated from 712 to 300 lines):

diff -r fbba13c86f22 -r 5cc81f577ff5 sys/arch/arm/imx/imx51_esdhc.c
--- a/sys/arch/arm/imx/imx51_esdhc.c    Tue Jun 05 21:11:50 2018 +0000
+++ b/sys/arch/arm/imx/imx51_esdhc.c    Wed Jun 06 01:49:07 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: imx51_esdhc.c,v 1.3 2015/05/26 05:11:33 hkenken Exp $ */
+/*     $NetBSD: imx51_esdhc.c,v 1.4 2018/06/06 01:49:07 maya Exp $ */
 
 /*-
  * Copyright (c) 2012  Genetec Corporation.  All rights reserved.
@@ -30,7 +30,7 @@
 
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: imx51_esdhc.c,v 1.3 2015/05/26 05:11:33 hkenken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: imx51_esdhc.c,v 1.4 2018/06/06 01:49:07 maya Exp $");
 
 #include "opt_imx.h"
 
@@ -105,16 +105,16 @@
        switch (aa->aa_addr) {
        case ESDHC1_BASE:
                perclk = imx51_get_clock(IMX51CLK_ESDHC1_CLK_ROOT);
-               break;;
+               break;
        case ESDHC2_BASE:
                perclk = imx51_get_clock(IMX51CLK_ESDHC2_CLK_ROOT);
-               break;;
+               break;
        case ESDHC3_BASE:
                perclk = imx51_get_clock(IMX51CLK_ESDHC3_CLK_ROOT);
-               break;;
+               break;
        case ESDHC4_BASE:
                perclk = imx51_get_clock(IMX51CLK_ESDHC4_CLK_ROOT);
-               break;;
+               break;
        }
        sc->sc_sdhc.sc_clkbase = perclk / 1000;
        sc->sc_sdhc.sc_flags |= SDHC_FLAG_USE_DMA;
diff -r fbba13c86f22 -r 5cc81f577ff5 sys/arch/cobalt/cobalt/interrupt.c
--- a/sys/arch/cobalt/cobalt/interrupt.c        Tue Jun 05 21:11:50 2018 +0000
+++ b/sys/arch/cobalt/cobalt/interrupt.c        Wed Jun 06 01:49:07 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: interrupt.c,v 1.8 2018/01/20 13:56:08 skrll Exp $      */
+/*     $NetBSD: interrupt.c,v 1.9 2018/06/06 01:49:07 maya Exp $       */
 
 /*-
  * Copyright (c) 2006 Izumi Tsutsui.  All rights reserved.
@@ -79,7 +79,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: interrupt.c,v 1.8 2018/01/20 13:56:08 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: interrupt.c,v 1.9 2018/06/06 01:49:07 maya Exp $");
 
 #define __INTR_PRIVATE
 
@@ -174,7 +174,7 @@
        /*
         * Initialize ICU interrupts.
         */
-       icu_bst = &cobalt_bs;;
+       icu_bst = &cobalt_bs;
        bus_space_map(icu_bst, PCIB_BASE + IO_ICU1, IO_ICUSIZE, 0, &icu1_bsh);
        bus_space_map(icu_bst, PCIB_BASE + IO_ICU2, IO_ICUSIZE, 0, &icu2_bsh);
        bus_space_map(icu_bst, PCIB_BASE + IO_ELCR, IO_ELCRSIZE, 0, &elcr_bsh);
diff -r fbba13c86f22 -r 5cc81f577ff5 sys/arch/evbmips/rmixl/machdep.c
--- a/sys/arch/evbmips/rmixl/machdep.c  Tue Jun 05 21:11:50 2018 +0000
+++ b/sys/arch/evbmips/rmixl/machdep.c  Wed Jun 06 01:49:07 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.18 2016/12/22 14:47:57 cherry Exp $      */
+/*     $NetBSD: machdep.c,v 1.19 2018/06/06 01:49:08 maya Exp $        */
 
 /*
  * Copyright 2001, 2002 Wasabi Systems, Inc.
@@ -74,7 +74,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.18 2016/12/22 14:47:57 cherry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.19 2018/06/06 01:49:08 maya Exp $");
 
 #define __INTR_PRIVATE
 
@@ -888,7 +888,7 @@
 
        wip = (volatile rmixlfw_cpu_wakeup_info_t *)
                        (intptr_t)scratch_7;
-       end = wip->entry.gp - (wip->master_cpu & (PAGE_SIZE * 2));;
+       end = wip->entry.gp - (wip->master_cpu & (PAGE_SIZE * 2));
 
        if (wip->valid == 1) {
                rcp->rc_cpu_wakeup_end = (const void *)end;
diff -r fbba13c86f22 -r 5cc81f577ff5 sys/arch/luna68k/dev/omrasops.c
--- a/sys/arch/luna68k/dev/omrasops.c   Tue Jun 05 21:11:50 2018 +0000
+++ b/sys/arch/luna68k/dev/omrasops.c   Wed Jun 06 01:49:07 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: omrasops.c,v 1.19 2014/10/04 16:58:17 tsutsui Exp $ */
+/* $NetBSD: omrasops.c,v 1.20 2018/06/06 01:49:08 maya Exp $ */
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: omrasops.c,v 1.19 2014/10/04 16:58:17 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: omrasops.c,v 1.20 2018/06/06 01:49:08 maya Exp $");
 
 /*
  * Designed speficically for 'm68k bitorder';
@@ -316,7 +316,7 @@
        int scanspan, startx, height, width, align, w, y;
        uint32_t lmask, rmask, fill;
 
-       scanspan = ri->ri_stride;;
+       scanspan = ri->ri_stride;
        y = ri->ri_font->fontheight * row;
        startx = ri->ri_font->fontwidth * startcol;
        height = ri->ri_font->fontheight;
@@ -364,7 +364,7 @@
        int scanspan, startx, height, width, align, w, y, fg, bg;
        uint32_t lmask, rmask, fill0, fill1, fill2, fill3;
 
-       scanspan = ri->ri_stride;;
+       scanspan = ri->ri_stride;
        y = ri->ri_font->fontheight * row;
        startx = ri->ri_font->fontwidth * startcol;
        height = ri->ri_font->fontheight;
diff -r fbba13c86f22 -r 5cc81f577ff5 sys/arch/mips/mips/pmap_machdep.c
--- a/sys/arch/mips/mips/pmap_machdep.c Tue Jun 05 21:11:50 2018 +0000
+++ b/sys/arch/mips/mips/pmap_machdep.c Wed Jun 06 01:49:07 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_machdep.c,v 1.21 2017/06/09 06:39:24 skrll Exp $  */
+/*     $NetBSD: pmap_machdep.c,v 1.22 2018/06/06 01:49:08 maya Exp $   */
 
 /*-
  * Copyright (c) 1998, 2001 The NetBSD Foundation, Inc.
@@ -67,7 +67,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(0, "$NetBSD: pmap_machdep.c,v 1.21 2017/06/09 06:39:24 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_machdep.c,v 1.22 2018/06/06 01:49:08 maya Exp $");
 
 /*
  *     Manages physical address maps.
@@ -525,7 +525,7 @@
 #endif
            || MIPS_CACHE_VIRTUAL_ALIAS
            || MIPS_ICACHE_VIRTUAL_ALIAS) {
-               vsize_t size = max(mci->mci_pdcache_way_size, mci->mci_picache_way_size);;
+               vsize_t size = max(mci->mci_pdcache_way_size, mci->mci_picache_way_size);
                const u_int __diagused mask = pmap_page_cache_alias_mask;
 
                ci->ci_pmap_dstbase = uvm_km_alloc(kernel_map, size, size,
diff -r fbba13c86f22 -r 5cc81f577ff5 sys/arch/sparc64/sparc64/cpu.c
--- a/sys/arch/sparc64/sparc64/cpu.c    Tue Jun 05 21:11:50 2018 +0000
+++ b/sys/arch/sparc64/sparc64/cpu.c    Wed Jun 06 01:49:07 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cpu.c,v 1.134 2018/01/19 12:47:41 nakayama Exp $ */
+/*     $NetBSD: cpu.c,v 1.135 2018/06/06 01:49:08 maya Exp $ */
 
 /*
  * Copyright (c) 1996
@@ -52,7 +52,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.134 2018/01/19 12:47:41 nakayama Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.135 2018/06/06 01:49:08 maya Exp $");
 
 #include "opt_multiprocessor.h"
 
@@ -160,7 +160,7 @@
 cpu_cache_info_sun4v(const char *type, int level, const char *prop)
 {
        int idx = 0;
-       uint64_t val = 0;;
+       uint64_t val = 0;
        idx = mdesc_find_node_by_idx(idx, "cache");
        while (idx != -1 && val == 0) {
                const char *name = mdesc_name_by_idx(idx);
diff -r fbba13c86f22 -r 5cc81f577ff5 sys/arch/usermode/target/i386/cpu_i386.c
--- a/sys/arch/usermode/target/i386/cpu_i386.c  Tue Jun 05 21:11:50 2018 +0000
+++ b/sys/arch/usermode/target/i386/cpu_i386.c  Wed Jun 06 01:49:07 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cpu_i386.c,v 1.6 2018/05/22 14:38:10 reinoud Exp $ */
+/* $NetBSD: cpu_i386.c,v 1.7 2018/06/06 01:49:08 maya Exp $ */
 
 /*-
  * Copyright (c) 2011 Reinoud Zandijk <reinoud%netbsd.org@localhost>
@@ -29,7 +29,7 @@
 
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpu_i386.c,v 1.6 2018/05/22 14:38:10 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu_i386.c,v 1.7 2018/06/06 01:49:08 maya Exp $");
 
 #include <sys/types.h>
 #include <sys/systm.h>
@@ -54,7 +54,7 @@
 #include "opt_exec.h"
 
 #if 0
-static void dump_regs(register_t *reg);;
+static void dump_regs(register_t *reg);
 
 static void
 dump_regs(register_t *reg)
diff -r fbba13c86f22 -r 5cc81f577ff5 sys/arch/usermode/target/x86_64/cpu_x86_64.c
--- a/sys/arch/usermode/target/x86_64/cpu_x86_64.c      Tue Jun 05 21:11:50 2018 +0000
+++ b/sys/arch/usermode/target/x86_64/cpu_x86_64.c      Wed Jun 06 01:49:07 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cpu_x86_64.c,v 1.5 2018/05/22 14:38:10 reinoud Exp $ */
+/* $NetBSD: cpu_x86_64.c,v 1.6 2018/06/06 01:49:08 maya Exp $ */
 
 /*-
  * Copyright (c) 2011 Reinoud Zandijk <reinoud%netbsd.org@localhost>
@@ -29,7 +29,7 @@
 
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpu_x86_64.c,v 1.5 2018/05/22 14:38:10 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu_x86_64.c,v 1.6 2018/06/06 01:49:08 maya Exp $");
 
 #include <sys/types.h>
 #include <sys/systm.h>
@@ -52,7 +52,7 @@
 #include <machine/mcontext.h>
 
 #if 0
-static void dump_regs(register_t *reg);;
+static void dump_regs(register_t *reg);
 
 static void
 dump_regs(register_t *reg)
diff -r fbba13c86f22 -r 5cc81f577ff5 sys/arch/vax/vsa/lcg.c
--- a/sys/arch/vax/vsa/lcg.c    Tue Jun 05 21:11:50 2018 +0000
+++ b/sys/arch/vax/vsa/lcg.c    Wed Jun 06 01:49:07 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: lcg.c,v 1.3 2018/02/08 09:05:18 dholland Exp $ */
+/*     $NetBSD: lcg.c,v 1.4 2018/06/06 01:49:08 maya Exp $ */
 /*
  * LCG accelerated framebuffer driver
  * Copyright (c) 2003, 2004 Blaz Antonic
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lcg.c,v 1.3 2018/02/08 09:05:18 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lcg.c,v 1.4 2018/06/06 01:49:08 maya Exp $");
 
 #define LCG_NO_ACCEL
 
@@ -271,7 +271,7 @@
 int fifo_fill(int iterations)
 {
        long status;
-       int counter = 0;;
+       int counter = 0;
 
        while (fifo_counter % 4)
                fifo_put(0);
diff -r fbba13c86f22 -r 5cc81f577ff5 sys/dev/acpi/wmi/wmi_hp.c
--- a/sys/dev/acpi/wmi/wmi_hp.c Tue Jun 05 21:11:50 2018 +0000
+++ b/sys/dev/acpi/wmi/wmi_hp.c Wed Jun 06 01:49:07 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: wmi_hp.c,v 1.10 2017/06/01 02:45:09 chs Exp $ */
+/*     $NetBSD: wmi_hp.c,v 1.11 2018/06/06 01:49:08 maya Exp $ */
 
 /*-
  * Copyright (c) 2009, 2010 The NetBSD Foundation, Inc.
@@ -57,7 +57,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: wmi_hp.c,v 1.10 2017/06/01 02:45:09 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: wmi_hp.c,v 1.11 2018/06/06 01:49:08 maya Exp $");
 
 #include <sys/param.h>
 #include <sys/device.h>
@@ -720,7 +720,7 @@
        err = sysctl_lookup(SYSCTLFN_CALL(&node));
 
        if (err != 0 || newp == NULL)
-               return err;;
+               return err;
 
        if (als < 0 || als > 1)
                return EINVAL;
diff -r fbba13c86f22 -r 5cc81f577ff5 sys/dev/filemon/filemon.c
--- a/sys/dev/filemon/filemon.c Tue Jun 05 21:11:50 2018 +0000
+++ b/sys/dev/filemon/filemon.c Wed Jun 06 01:49:07 2018 +0000
@@ -1,4 +1,4 @@
-/*      $NetBSD: filemon.c,v 1.29 2017/11/30 20:25:55 christos Exp $ */
+/*      $NetBSD: filemon.c,v 1.30 2018/06/06 01:49:08 maya Exp $ */
 /*
  * Copyright (c) 2010, Juniper Networks, Inc.
  *



Home | Main Index | Thread Index | Old Index