Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/usb Fix indentation



details:   https://anonhg.NetBSD.org/src/rev/0e2fab824e16
branches:  trunk
changeset: 812310:0e2fab824e16
user:      skrll <skrll%NetBSD.org@localhost>
date:      Thu Dec 10 16:35:45 2015 +0000

description:
Fix indentation

diffstat:

 sys/dev/usb/xhci.c |  43 ++++++++++++++++++++++---------------------
 1 files changed, 22 insertions(+), 21 deletions(-)

diffs (66 lines):

diff -r 045f73cc3719 -r 0e2fab824e16 sys/dev/usb/xhci.c
--- a/sys/dev/usb/xhci.c        Thu Dec 10 15:51:11 2015 +0000
+++ b/sys/dev/usb/xhci.c        Thu Dec 10 16:35:45 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: xhci.c,v 1.30 2015/12/10 15:50:17 skrll Exp $  */
+/*     $NetBSD: xhci.c,v 1.31 2015/12/10 16:35:45 skrll Exp $  */
 
 /*
  * Copyright (c) 2013 Jonathan A. Kollasch
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.30 2015/12/10 15:50:17 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.31 2015/12/10 16:35:45 skrll Exp $");
 
 #include "opt_usb.h"
 
@@ -984,27 +984,28 @@
        cp[3] = htole32(0);
 
        cp = xhci_slot_get_icv(sc, xs, xhci_dci_to_ici(dci));
+       uint8_t eptype = xhci_ep_get_type(pipe->endpoint->edesc);
        if (xfertype == UE_INTERRUPT) {
-       cp[0] = htole32(
-           XHCI_EPCTX_0_IVAL_SET(3) /* XXX */
-           );
-       cp[1] = htole32(
-           XHCI_EPCTX_1_CERR_SET(3) |
-           XHCI_EPCTX_1_EPTYPE_SET(xhci_ep_get_type(pipe->endpoint->edesc)) |
-           XHCI_EPCTX_1_MAXB_SET(0) |
-           XHCI_EPCTX_1_MAXP_SIZE_SET(8) /* XXX */
-           );
-       cp[4] = htole32(
-               XHCI_EPCTX_4_AVG_TRB_LEN_SET(8)
-               );
+               cp[0] = htole32(
+                   XHCI_EPCTX_0_IVAL_SET(3) /* XXX */
+                   );
+               cp[1] = htole32(
+                   XHCI_EPCTX_1_CERR_SET(3) |
+                   XHCI_EPCTX_1_EPTYPE_SET(eptype) |
+                   XHCI_EPCTX_1_MAXB_SET(0) |
+                   XHCI_EPCTX_1_MAXP_SIZE_SET(8) /* XXX */
+                   );
+               cp[4] = htole32(
+                   XHCI_EPCTX_4_AVG_TRB_LEN_SET(8)
+                   );
        } else {
-       cp[0] = htole32(0);
-       cp[1] = htole32(
-           XHCI_EPCTX_1_CERR_SET(3) |
-           XHCI_EPCTX_1_EPTYPE_SET(xhci_ep_get_type(pipe->endpoint->edesc)) |
-           XHCI_EPCTX_1_MAXB_SET(0) |
-           XHCI_EPCTX_1_MAXP_SIZE_SET(512) /* XXX */
-           );
+               cp[0] = htole32(0);
+               cp[1] = htole32(
+                   XHCI_EPCTX_1_CERR_SET(3) |
+                   XHCI_EPCTX_1_EPTYPE_SET(eptype) |
+                   XHCI_EPCTX_1_MAXB_SET(0) |
+                   XHCI_EPCTX_1_MAXP_SIZE_SET(512) /* XXX */
+                   );
        }
        *(uint64_t *)(&cp[2]) = htole64(
            xhci_ring_trbp(&xs->xs_ep[dci].xe_tr, 0) |



Home | Main Index | Thread Index | Old Index