Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/fdt trailing whitespace



details:   https://anonhg.NetBSD.org/src/rev/05c716c7898a
branches:  trunk
changeset: 958729:05c716c7898a
user:      jmcneill <jmcneill%NetBSD.org@localhost>
date:      Sun Jan 17 19:53:05 2021 +0000

description:
trailing whitespace

diffstat:

 sys/arch/arm/fdt/acpi_fdt.c  |  6 +++---
 sys/dev/fdt/amdccp_fdt.c     |  6 +++---
 sys/dev/fdt/fixedregulator.c |  6 +++---
 sys/dev/fdt/gpioregulator.c  |  6 +++---
 sys/dev/fdt/i2cmux_fdt.c     |  6 +++---
 5 files changed, 15 insertions(+), 15 deletions(-)

diffs (132 lines):

diff -r ba7691ed9b12 -r 05c716c7898a sys/arch/arm/fdt/acpi_fdt.c
--- a/sys/arch/arm/fdt/acpi_fdt.c       Sun Jan 17 19:51:43 2021 +0000
+++ b/sys/arch/arm/fdt/acpi_fdt.c       Sun Jan 17 19:53:05 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: acpi_fdt.c,v 1.16 2020/10/10 15:34:05 jmcneill Exp $ */
+/* $NetBSD: acpi_fdt.c,v 1.17 2021/01/17 19:53:05 jmcneill Exp $ */
 
 /*-
  * Copyright (c) 2015-2017 Jared McNeill <jmcneill%invisible.ca@localhost>
@@ -30,7 +30,7 @@
 #include "opt_efi.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: acpi_fdt.c,v 1.16 2020/10/10 15:34:05 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: acpi_fdt.c,v 1.17 2021/01/17 19:53:05 jmcneill Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -105,7 +105,7 @@
 #if NPCI > 0
        aa.aa_pciflags =
            /*PCI_FLAGS_IO_OKAY |*/ PCI_FLAGS_MEM_OKAY |
-           PCI_FLAGS_MRL_OKAY | PCI_FLAGS_MRM_OKAY | 
+           PCI_FLAGS_MRL_OKAY | PCI_FLAGS_MRM_OKAY |
            PCI_FLAGS_MWI_OKAY;
 #ifdef __HAVE_PCI_MSI_MSIX
        aa.aa_pciflags |= PCI_FLAGS_MSI_OKAY | PCI_FLAGS_MSIX_OKAY;
diff -r ba7691ed9b12 -r 05c716c7898a sys/dev/fdt/amdccp_fdt.c
--- a/sys/dev/fdt/amdccp_fdt.c  Sun Jan 17 19:51:43 2021 +0000
+++ b/sys/dev/fdt/amdccp_fdt.c  Sun Jan 17 19:53:05 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: amdccp_fdt.c,v 1.1 2018/10/19 21:09:10 jakllsch Exp $ */
+/* $NetBSD: amdccp_fdt.c,v 1.2 2021/01/17 19:54:23 jmcneill Exp $ */
 
 /*
  * Copyright (c) 2018 Jonathan A. Kollasch
@@ -28,7 +28,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(0, "$NetBSD: amdccp_fdt.c,v 1.1 2018/10/19 21:09:10 jakllsch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: amdccp_fdt.c,v 1.2 2021/01/17 19:54:23 jmcneill Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -76,7 +76,7 @@
 
        if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0) {
                aprint_error(": couldn't get registers\n");
-               return;         
+               return;
        }
 
        sc->sc_bst = faa->faa_bst;
diff -r ba7691ed9b12 -r 05c716c7898a sys/dev/fdt/fixedregulator.c
--- a/sys/dev/fdt/fixedregulator.c      Sun Jan 17 19:51:43 2021 +0000
+++ b/sys/dev/fdt/fixedregulator.c      Sun Jan 17 19:53:05 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: fixedregulator.c,v 1.8 2019/05/23 21:36:26 jmcneill Exp $ */
+/* $NetBSD: fixedregulator.c,v 1.9 2021/01/17 19:54:23 jmcneill Exp $ */
 
 /*-
  * Copyright (c) 2015 Jared D. McNeill <jmcneill%invisible.ca@localhost>
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: fixedregulator.c,v 1.8 2019/05/23 21:36:26 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fixedregulator.c,v 1.9 2021/01/17 19:54:23 jmcneill Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -152,7 +152,7 @@
        return 0;
 }
 
-static void 
+static void
 fixedregulator_release(device_t dev)
 {
 }
diff -r ba7691ed9b12 -r 05c716c7898a sys/dev/fdt/gpioregulator.c
--- a/sys/dev/fdt/gpioregulator.c       Sun Jan 17 19:51:43 2021 +0000
+++ b/sys/dev/fdt/gpioregulator.c       Sun Jan 17 19:53:05 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: gpioregulator.c,v 1.2 2019/01/19 20:51:12 jmcneill Exp $ */
+/* $NetBSD: gpioregulator.c,v 1.3 2021/01/17 19:54:23 jmcneill Exp $ */
 
 /*-
  * Copyright (c) 2017 Jared McNeill <jmcneill%invisible.ca@localhost>
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: gpioregulator.c,v 1.2 2019/01/19 20:51:12 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: gpioregulator.c,v 1.3 2021/01/17 19:54:23 jmcneill Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -189,7 +189,7 @@
        return 0;
 }
 
-static void 
+static void
 gpioregulator_release(device_t dev)
 {
 }
diff -r ba7691ed9b12 -r 05c716c7898a sys/dev/fdt/i2cmux_fdt.c
--- a/sys/dev/fdt/i2cmux_fdt.c  Sun Jan 17 19:51:43 2021 +0000
+++ b/sys/dev/fdt/i2cmux_fdt.c  Sun Jan 17 19:53:05 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: i2cmux_fdt.c,v 1.4 2020/12/28 20:29:57 thorpej Exp $   */
+/*     $NetBSD: i2cmux_fdt.c,v 1.5 2021/01/17 19:54:23 jmcneill Exp $  */
 
 /*-
  * Copyright (c) 2020 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: i2cmux_fdt.c,v 1.4 2020/12/28 20:29:57 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: i2cmux_fdt.c,v 1.5 2021/01/17 19:54:23 jmcneill Exp $");
 
 #include <sys/types.h>
 #include <sys/device.h>
@@ -278,4 +278,4 @@
 }
 
 CFATTACH_DECL_NEW(iicmux_fdt, sizeof(struct iicmux_softc),
-    iicmux_fdt_match, iicmux_fdt_attach, NULL, NULL); 
+    iicmux_fdt_match, iicmux_fdt_attach, NULL, NULL);



Home | Main Index | Thread Index | Old Index