diff options
| author | skrll <skrll@NetBSD.org> | 2021-12-21 10:14:43 +0000 |
|---|---|---|
| committer | skrll <skrll@NetBSD.org> | 2021-12-21 10:14:43 +0000 |
| commit | b0567b535ee3375e46cd519a03b986484c86b893 (patch) | |
| tree | 28d1b29d0cdf4f3d700a2d5351ce2c85de785fd5 /sys/dev | |
| parent | 1b7374612cba479ba0c1379e9c64ff8a9a0666a1 (diff) | |
Wrap a long line
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/usb/ehci.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/dev/usb/ehci.c b/sys/dev/usb/ehci.c index fc9cf2499ee..af203545abc 100644 --- a/sys/dev/usb/ehci.c +++ b/sys/dev/usb/ehci.c @@ -1,4 +1,4 @@ -/* $NetBSD: ehci.c,v 1.293 2021/12/21 09:51:22 skrll Exp $ */ +/* $NetBSD: ehci.c,v 1.294 2021/12/21 10:14:43 skrll Exp $ */ /* * Copyright (c) 2004-2012,2016,2020 The NetBSD Foundation, Inc. @@ -54,7 +54,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.293 2021/12/21 09:51:22 skrll Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.294 2021/12/21 10:14:43 skrll Exp $"); #include "ohci.h" #include "uhci.h" @@ -2000,8 +2000,9 @@ ehci_open(struct usbd_pipe *pipe) switch (xfertype) { case UE_CONTROL: - err = usb_allocmem(sc->sc_bus.ub_dmatag, sizeof(usb_device_request_t), - 0, USBMALLOC_COHERENT, &epipe->ctrl.reqdma); + err = usb_allocmem(sc->sc_bus.ub_dmatag, + sizeof(usb_device_request_t), 0, USBMALLOC_COHERENT, + &epipe->ctrl.reqdma); #ifdef EHCI_DEBUG if (err) printf("ehci_open: usb_allocmem()=%d\n", err); |
