Source-Changes-HG archive

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

[src/nick-nhusb]: src/sys/dev/usb Whitespace



details:   https://anonhg.NetBSD.org/src/rev/1ac76b6c2a83
branches:  nick-nhusb
changeset: 334555:1ac76b6c2a83
user:      skrll <skrll%NetBSD.org@localhost>
date:      Wed Nov 02 08:41:00 2016 +0000

description:
Whitespace

diffstat:

 sys/dev/usb/ucom.c |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (45 lines):

diff -r 1bfcfbab93bb -r 1ac76b6c2a83 sys/dev/usb/ucom.c
--- a/sys/dev/usb/ucom.c        Wed Nov 02 08:31:25 2016 +0000
+++ b/sys/dev/usb/ucom.c        Wed Nov 02 08:41:00 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ucom.c,v 1.108.2.28 2016/11/02 08:31:25 skrll Exp $    */
+/*     $NetBSD: ucom.c,v 1.108.2.29 2016/11/02 08:41:00 skrll Exp $    */
 
 /*
  * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ucom.c,v 1.108.2.28 2016/11/02 08:31:25 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ucom.c,v 1.108.2.29 2016/11/02 08:41:00 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -587,7 +587,7 @@
 
                if (sc->sc_methods->ucom_open != NULL) {
                        error = sc->sc_methods->ucom_open(sc->sc_parent,
-                                                         sc->sc_portno);
+                           sc->sc_portno);
                        if (error) {
                                ucom_cleanup(sc);
                                sc->sc_opening = 0;
@@ -1153,7 +1153,7 @@
 
        if (sc->sc_methods->ucom_param != NULL) {
                error = sc->sc_methods->ucom_param(sc->sc_parent, sc->sc_portno,
-                           t);
+                   t);
                if (error)
                        return error;
        }
@@ -1253,7 +1253,7 @@
 
        if (sc->sc_methods->ucom_write != NULL)
                sc->sc_methods->ucom_write(sc->sc_parent, sc->sc_portno,
-                                          ub->ub_data, data, &cnt);
+                   ub->ub_data, data, &cnt);
        else
                memcpy(ub->ub_data, data, cnt);
 



Home | Main Index | Thread Index | Old Index