summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorskrll <skrll@NetBSD.org>2021-12-07 07:58:20 +0000
committerskrll <skrll@NetBSD.org>2021-12-07 07:58:20 +0000
commitd6a20eba69937e796c407ddfeefe9575dca4318d (patch)
tree377af676c7ecb21462709ca2b1a44c46843fe20b /sys/dev
parentfa691bbb9e8d84cc9936b2da54a9131562ae190b (diff)
More usb_status_t -> int
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/usb/ehci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/ehci.c b/sys/dev/usb/ehci.c
index 94cc850cc2d..652d7587219 100644
--- a/sys/dev/usb/ehci.c
+++ b/sys/dev/usb/ehci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ehci.c,v 1.288 2021/12/07 07:54:32 skrll Exp $ */
+/* $NetBSD: ehci.c,v 1.289 2021/12/07 07:58:20 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.288 2021/12/07 07:54:32 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.289 2021/12/07 07:58:20 skrll Exp $");
#include "ohci.h"
#include "uhci.h"
@@ -403,7 +403,7 @@ ehci_init(ehci_softc_t *sc)
{
uint32_t vers, sparams, cparams, hcr;
u_int i;
- usbd_status err;
+ int err;
ehci_soft_qh_t *sqh;
u_int ncomp;