Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/arm/samsung Trailing whitespace.



details:   https://anonhg.NetBSD.org/src/rev/fad0f41a51c9
branches:  trunk
changeset: 335201:fad0f41a51c9
user:      skrll <skrll%NetBSD.org@localhost>
date:      Mon Dec 29 22:34:08 2014 +0000

description:
Trailing whitespace.

diffstat:

 sys/arch/arm/samsung/exynos_gpio.c |   8 ++++----
 sys/arch/arm/samsung/exynos_i2c.c  |  14 +++++++-------
 sys/arch/arm/samsung/exynos_soc.c  |   8 ++++----
 3 files changed, 15 insertions(+), 15 deletions(-)

diffs (135 lines):

diff -r add8aac956b2 -r fad0f41a51c9 sys/arch/arm/samsung/exynos_gpio.c
--- a/sys/arch/arm/samsung/exynos_gpio.c        Mon Dec 29 21:50:09 2014 +0000
+++ b/sys/arch/arm/samsung/exynos_gpio.c        Mon Dec 29 22:34:08 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: exynos_gpio.c,v 1.11 2014/09/24 20:35:43 reinoud Exp $ */
+/*     $NetBSD: exynos_gpio.c,v 1.12 2014/12/29 22:34:08 skrll Exp $   */
 
 /*-
 * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
 #include "gpio.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: exynos_gpio.c,v 1.11 2014/09/24 20:35:43 reinoud Exp $");
+__KERNEL_RCSID(1, "$NetBSD: exynos_gpio.c,v 1.12 2014/12/29 22:34:08 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -244,7 +244,7 @@
  *
  * MP2_0-MP2_10: 80 DRAM2 ports NOTE: GPIO registers do not control these
  * ports.
- * 
+ *
  * ETC0, ETC5, ETC6, ETC7, ETC8: 22 in/out ETC ports-JTAG, C2C_CLK (Rx),
  * RESET, CLOCK, USBOTG and USB3, C2C_CLK (Tx)
  */
@@ -381,7 +381,7 @@
        /* if no pins available, don't proceed */
        if (pin_count == 0)
                return;
-       
+
        /* allocate pin data */
        pins = kmem_zalloc(sizeof(gpio_pin_t) * pin_count, KM_SLEEP);
        KASSERT(pins);
diff -r add8aac956b2 -r fad0f41a51c9 sys/arch/arm/samsung/exynos_i2c.c
--- a/sys/arch/arm/samsung/exynos_i2c.c Mon Dec 29 21:50:09 2014 +0000
+++ b/sys/arch/arm/samsung/exynos_i2c.c Mon Dec 29 22:34:08 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: exynos_i2c.c,v 1.2 2014/08/26 11:45:49 reinoud Exp $ */
+/*     $NetBSD: exynos_i2c.c,v 1.3 2014/12/29 22:34:08 skrll Exp $ */
 
 /*
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -36,7 +36,7 @@
 #include "exynos_iic.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: exynos_i2c.c,v 1.2 2014/08/26 11:45:49 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: exynos_i2c.c,v 1.3 2014/12/29 22:34:08 skrll Exp $");
 
 
 #include <sys/param.h>
@@ -226,7 +226,7 @@
        i2c_cntr->ic_initiate_xfer = exynos_iic_initiate_xfer;
        i2c_cntr->ic_read_byte   = exynos_iic_read_byte;
        i2c_cntr->ic_write_byte  = exynos_iic_write_byte;
-       
+
        exynos_gpio_pinset_acquire(pinset);
        if (ei2c_sc->isc_isgpio) {
                /* get sda and slc pins */
@@ -289,7 +289,7 @@
 
        flags = GPIO_PIN_INPUT | GPIO_PIN_TRISTATE;
        i2c_sc->isc_sda_is_output = ((bits & EXYNOS_IIC_BB_SDA_OUT) != 0);
-       if (i2c_sc->isc_sda_is_output) 
+       if (i2c_sc->isc_sda_is_output)
                flags = GPIO_PIN_OUTPUT | GPIO_PIN_TRISTATE;
 
        exynos_gpio_pindata_ctl(&i2c_sc->isc_sda, flags);
@@ -343,7 +343,7 @@
        return EINVAL;
 }
 
-static int     
+static int
 exynos_iic_send_stop(void *cookie, int flags)
 {
        struct exynos_iic_dev_softc *i2c_sc = cookie;
@@ -354,7 +354,7 @@
        return EINVAL;
 }
 
-static int     
+static int
 exynos_iic_initiate_xfer(void *cookie, i2c_addr_t addr, int flags)
 {
        struct exynos_iic_dev_softc *i2c_sc = cookie;
@@ -378,7 +378,7 @@
        return EINVAL;
 }
 
-static int     
+static int
 exynos_iic_write_byte(void *cookie, uint8_t byte, int flags)
 {
        struct exynos_iic_dev_softc *i2c_sc = cookie;
diff -r add8aac956b2 -r fad0f41a51c9 sys/arch/arm/samsung/exynos_soc.c
--- a/sys/arch/arm/samsung/exynos_soc.c Mon Dec 29 21:50:09 2014 +0000
+++ b/sys/arch/arm/samsung/exynos_soc.c Mon Dec 29 22:34:08 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: exynos_soc.c,v 1.25 2014/10/02 11:27:09 reinoud Exp $  */
+/*     $NetBSD: exynos_soc.c,v 1.26 2014/12/29 22:34:08 skrll Exp $    */
 
 /*-
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
 #define        _ARM32_BUS_DMA_PRIVATE
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: exynos_soc.c,v 1.25 2014/10/02 11:27:09 reinoud Exp $");
+__KERNEL_RCSID(1, "$NetBSD: exynos_soc.c,v 1.26 2014/12/29 22:34:08 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -72,7 +72,7 @@
        uint64_t freq;
        int      P;
        int      M;
-       int      S; 
+       int      S;
 };
 
 
@@ -895,7 +895,7 @@
        /* host phy reset */
        phyhost &= ~(HOST_CTRL0_PHY_SWRST | HOST_CTRL0_PHY_SWRST_ALL |
                HOST_CTRL0_SIDDQ | HOST_CTRL0_COMMONON_N);
-                       
+
        /* host link reset */
        phyhost |= HOST_CTRL0_LINK_SWRST | HOST_CTRL0_UTMI_SWRST;
 



Home | Main Index | Thread Index | Old Index