1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-04 09:09:56 +00:00

MFNetBSD:

date: 2002/09/29 20:59:30;  author: augustss;  state: Exp;  lines: +2 -7
    Remove extra call to ohci_rem_ed().  From kern/18448, Takeshi Nakayama.

Approved by:	re (rwatson)
This commit is contained in:
Josef Karthauser 2002-12-09 01:39:32 +00:00
parent 056475f0bf
commit 2c123d54ee
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=107692

View File

@ -3447,13 +3447,8 @@ ohci_device_isoc_close(usbd_pipe_handle pipe)
{
struct ohci_pipe *opipe = (struct ohci_pipe *)pipe;
ohci_softc_t *sc = (ohci_softc_t *)pipe->device->bus;
int s;
DPRINTF(("ohci_device_isoc_close: pipe=%p\n", pipe));
s = splusb();
ohci_rem_ed(opipe->sed, sc->sc_isoc_head);
splx(s);
ohci_close_pipe(pipe, sc->sc_isoc_head);
#ifdef DIAGNOSTIC
opipe->tail.itd->isdone = 1;