From d6a20eba69937e796c407ddfeefe9575dca4318d Mon Sep 17 00:00:00 2001 From: skrll Date: Tue, 7 Dec 2021 07:58:20 +0000 Subject: More usb_status_t -> int --- sys/dev/usb/ehci.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev') 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 -__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; -- cgit