Source-Changes-HG archive

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

[src/trunk]: src/sys PR/51540: Henning Petersen: replace , with ;



details:   https://anonhg.NetBSD.org/src/rev/3ce4f9fe6d9f
branches:  trunk
changeset: 818351:3ce4f9fe6d9f
user:      christos <christos%NetBSD.org@localhost>
date:      Sun Oct 09 14:35:33 2016 +0000

description:
PR/51540: Henning Petersen: replace , with ;

diffstat:

 sys/arch/arm/sa11x0/sa11x0_ost.c                         |   6 +++---
 sys/arch/dreamcast/dev/g2/g2rtc.c                        |   8 ++++----
 sys/dev/ic/rtwphyio.c                                    |   6 +++---
 sys/external/bsd/acpica/dist/disassembler/dmresrcl2.c    |   2 +-
 sys/external/isc/atheros_hal/dist/ar5416/ar5416_attach.c |  10 +++++-----
 5 files changed, 16 insertions(+), 16 deletions(-)

diffs (129 lines):

diff -r 2cc43bf9c15b -r 3ce4f9fe6d9f sys/arch/arm/sa11x0/sa11x0_ost.c
--- a/sys/arch/arm/sa11x0/sa11x0_ost.c  Sun Oct 09 14:06:11 2016 +0000
+++ b/sys/arch/arm/sa11x0/sa11x0_ost.c  Sun Oct 09 14:35:33 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sa11x0_ost.c,v 1.31 2013/12/17 01:29:39 joerg Exp $    */
+/*     $NetBSD: sa11x0_ost.c,v 1.32 2016/10/09 14:43:17 christos Exp $ */
 
 /*
  * Copyright (c) 1997 Mark Brinicombe.
@@ -38,7 +38,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sa11x0_ost.c,v 1.31 2013/12/17 01:29:39 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sa11x0_ost.c,v 1.32 2016/10/09 14:43:17 christos Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -276,7 +276,7 @@
        };
 
 #if defined(CPU_XSCALE_PXA270) && defined(CPU_XSCALE_PXA250)
-       saost_tc.tc_frequency = TIMER_FREQUENCY,
+       saost_tc.tc_frequency = TIMER_FREQUENCY;
 #endif
        tc_init(&saost_tc);
 }
diff -r 2cc43bf9c15b -r 3ce4f9fe6d9f sys/arch/dreamcast/dev/g2/g2rtc.c
--- a/sys/arch/dreamcast/dev/g2/g2rtc.c Sun Oct 09 14:06:11 2016 +0000
+++ b/sys/arch/dreamcast/dev/g2/g2rtc.c Sun Oct 09 14:35:33 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: g2rtc.c,v 1.7 2014/11/17 02:15:48 christos Exp $ */
+/* $NetBSD: g2rtc.c,v 1.8 2016/10/09 14:41:47 christos Exp $ */
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: g2rtc.c,v 1.7 2014/11/17 02:15:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: g2rtc.c,v 1.8 2016/10/09 14:41:47 christos Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -99,8 +99,8 @@
 
        tch = &sc->sc_tch;
        tch->cookie = sc;
-       tch->todr_gettime = g2rtc_todr_gettime,
-       tch->todr_settime = g2rtc_todr_settime,
+       tch->todr_gettime = g2rtc_todr_gettime;
+       tch->todr_settime = g2rtc_todr_settime;
        todr_attach(tch);
 }
 
diff -r 2cc43bf9c15b -r 3ce4f9fe6d9f sys/dev/ic/rtwphyio.c
--- a/sys/dev/ic/rtwphyio.c     Sun Oct 09 14:06:11 2016 +0000
+++ b/sys/dev/ic/rtwphyio.c     Sun Oct 09 14:35:33 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rtwphyio.c,v 1.18 2013/09/14 13:09:18 joerg Exp $ */
+/* $NetBSD: rtwphyio.c,v 1.19 2016/10/09 14:42:30 christos Exp $ */
 /*-
  * Copyright (c) 2004, 2005 David Young.  All rights reserved.
  *
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rtwphyio.c,v 1.18 2013/09/14 13:09:18 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rtwphyio.c,v 1.19 2016/10/09 14:42:30 christos Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -85,7 +85,7 @@
        KASSERT((val & ~__SHIFTOUT_MASK(RTW_BB_WR_MASK)) == 0);
 
        wrbbp = __SHIFTIN(addr, RTW_BB_ADDR_MASK) | RTW_BB_WREN |
-           __SHIFTIN(val, RTW_BB_WR_MASK) | RTW_BB_RD_MASK,
+           __SHIFTIN(val, RTW_BB_WR_MASK) | RTW_BB_RD_MASK;
 
        rdbbp = __SHIFTIN(addr, RTW_BB_ADDR_MASK) |
            RTW_BB_WR_MASK | RTW_BB_RD_MASK;
diff -r 2cc43bf9c15b -r 3ce4f9fe6d9f sys/external/bsd/acpica/dist/disassembler/dmresrcl2.c
--- a/sys/external/bsd/acpica/dist/disassembler/dmresrcl2.c     Sun Oct 09 14:06:11 2016 +0000
+++ b/sys/external/bsd/acpica/dist/disassembler/dmresrcl2.c     Sun Oct 09 14:35:33 2016 +0000
@@ -518,7 +518,7 @@
     ResourceSourceOffset = sizeof (AML_RESOURCE_COMMON_SERIALBUS) +
         Resource->CommonSerialBus.TypeDataLength;
 
-    DeviceName = ACPI_ADD_PTR (char, Resource, ResourceSourceOffset),
+    DeviceName = ACPI_ADD_PTR (char, Resource, ResourceSourceOffset);
     AcpiUtPrintString (DeviceName, ACPI_UINT16_MAX);
 
     /* ResourceSourceIndex, ResourceUsage */
diff -r 2cc43bf9c15b -r 3ce4f9fe6d9f sys/external/isc/atheros_hal/dist/ar5416/ar5416_attach.c
--- a/sys/external/isc/atheros_hal/dist/ar5416/ar5416_attach.c  Sun Oct 09 14:06:11 2016 +0000
+++ b/sys/external/isc/atheros_hal/dist/ar5416/ar5416_attach.c  Sun Oct 09 14:35:33 2016 +0000
@@ -14,7 +14,7 @@
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  *
- * $Id: ar5416_attach.c,v 1.4 2011/03/07 11:25:44 cegger Exp $
+ * $Id: ar5416_attach.c,v 1.5 2016/10/09 14:40:47 christos Exp $
  */
 #include "opt_ah.h"
 
@@ -86,8 +86,8 @@
        ah->ah_disable                  = ar5416Disable;
        ah->ah_configPCIE               = ar5416ConfigPCIE;
        ah->ah_perCalibration           = ar5416PerCalibration;
-       ah->ah_perCalibrationN          = ar5416PerCalibrationN,
-       ah->ah_resetCalValid            = ar5416ResetCalValid,
+       ah->ah_perCalibrationN          = ar5416PerCalibrationN;
+       ah->ah_resetCalValid            = ar5416ResetCalValid;
        ah->ah_setTxPowerLimit          = ar5416SetTxPowerLimit;
        ah->ah_setTxPower               = ar5416SetTransmitPower;
        ah->ah_setBoardValues           = ar5416SetBoardValues;
@@ -104,8 +104,8 @@
        ah->ah_stopPcuReceive           = ar5416StopPcuReceive;
        ah->ah_setupRxDesc              = ar5416SetupRxDesc;
        ah->ah_procRxDesc               = ar5416ProcRxDesc;
-       ah->ah_rxMonitor                = ar5416AniPoll,
-       ah->ah_procMibEvent             = ar5416ProcessMibIntr,
+       ah->ah_rxMonitor                = ar5416AniPoll;
+       ah->ah_procMibEvent             = ar5416ProcessMibIntr;
 
        /* Misc Functions */
        ah->ah_getDiagState             = ar5416GetDiagState;



Home | Main Index | Thread Index | Old Index