Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/arm/omap s/^ +/ /



details:   https://anonhg.NetBSD.org/src/rev/45595d71414c
branches:  trunk
changeset: 816525:45595d71414c
user:      kiyohara <kiyohara%NetBSD.org@localhost>
date:      Mon Jul 11 14:46:33 2016 +0000

description:
s/^ +/  /

diffstat:

 sys/arch/arm/omap/tiotg.c |  12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (45 lines):

diff -r 3b58227180c4 -r 45595d71414c sys/arch/arm/omap/tiotg.c
--- a/sys/arch/arm/omap/tiotg.c Mon Jul 11 14:44:49 2016 +0000
+++ b/sys/arch/arm/omap/tiotg.c Mon Jul 11 14:46:33 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: tiotg.c,v 1.4 2016/07/04 15:35:55 kiyohara Exp $ */
+/* $NetBSD: tiotg.c,v 1.5 2016/07/11 14:46:33 kiyohara Exp $ */
 /*
  * Copyright (c) 2013 Manuel Bouyer.  All rights reserved.
  *
@@ -24,7 +24,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tiotg.c,v 1.4 2016/07/04 15:35:55 kiyohara Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tiotg.c,v 1.5 2016/07/11 14:46:33 kiyohara Exp $");
 
 #include "opt_omap.h"
 #include "locators.h"
@@ -133,14 +133,14 @@
        if (mb->mb_iobase == MAINBUSCF_BASE_DEFAULT ||
            mb->mb_iosize == MAINBUSCF_SIZE_DEFAULT ||
            mb->mb_intrbase == MAINBUSCF_INTRBASE_DEFAULT)
-                return 0;
-        return 1;
+               return 0;
+       return 1;
 }
 
 static void
 tiotg_attach(device_t parent, device_t self, void *aux)
 {
-       struct tiotg_softc       *sc = device_private(self);
+       struct tiotg_softc *sc = device_private(self);
        struct mainbus_attach_args *mb = aux;
        uint32_t val;
 
@@ -157,7 +157,7 @@
        sc->sc_intrbase = mb->mb_intrbase;
        sc->sc_ih = intr_establish(mb->mb_intrbase, IPL_USB, IST_LEVEL,
            tiotg_intr, sc);
-        KASSERT(sc->sc_ih != NULL);
+       KASSERT(sc->sc_ih != NULL);
        aprint_normal(": TI dual-port USB controller");
        /* XXX this looks wrong */
        prcm_write_4(AM335X_PRCM_CM_WKUP, CM_WKUP_CM_CLKDCOLDO_DPLL_PER,



Home | Main Index | Thread Index | Old Index