diff options
| author | skrll <skrll@NetBSD.org> | 2013-11-23 12:35:19 +0000 |
|---|---|---|
| committer | skrll <skrll@NetBSD.org> | 2013-11-23 12:35:19 +0000 |
| commit | 395cfcc51c9462ec5a681ec5aa27ea05ea3933da (patch) | |
| tree | 597886e9e92048ee550d3825b132c7e6e9457229 /sys/dev | |
| parent | 1510d1fe21555a8cb02b1a5df887d2491e768489 (diff) | |
Whitespace in DIAGNOSTIC code.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/usb/ehci.c | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/sys/dev/usb/ehci.c b/sys/dev/usb/ehci.c index d7d84c99204..6eebc4f8a78 100644 --- a/sys/dev/usb/ehci.c +++ b/sys/dev/usb/ehci.c @@ -1,4 +1,4 @@ -/* $NetBSD: ehci.c,v 1.215 2013/11/04 16:54:36 christos Exp $ */ +/* $NetBSD: ehci.c,v 1.216 2013/11/23 12:35:19 skrll Exp $ */ /* * Copyright (c) 2004-2012 The NetBSD Foundation, Inc. @@ -53,7 +53,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.215 2013/11/04 16:54:36 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.216 2013/11/23 12:35:19 skrll Exp $"); #include "ohci.h" #include "uhci.h" @@ -918,18 +918,16 @@ ehci_idone(struct ehci_xfer *ex) DPRINTFN(/*12*/2, ("ehci_idone: ex=%p\n", ex)); #ifdef DIAGNOSTIC - { - if (ex->isdone) { + if (ex->isdone) { #ifdef EHCI_DEBUG - printf("ehci_idone: ex is done!\n "); - ehci_dump_exfer(ex); + printf("ehci_idone: ex is done!\n"); + ehci_dump_exfer(ex); #else - printf("ehci_idone: ex=%p is done!\n", ex); + printf("ehci_idone: ex=%p is done!\n", ex); #endif - return; - } - ex->isdone = 1; + return; } + ex->isdone = 1; #endif if (xfer->status == USBD_CANCELLED || xfer->status == USBD_TIMEOUT) { |
