MFNetBSD:

revision 1.156
    date: 2002/03/04 00:53:33;  author: augustss;  state: Exp;  lines: +3 -3
    Use the correct pointer for the timeout abort.
This commit is contained in:
Josef Karthauser 2002-04-07 18:14:08 +00:00
parent d5b41c2348
commit 24c73fed01
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=94142

View file

@ -1,4 +1,4 @@
/* $NetBSD: uhci.c,v 1.155 2002/02/27 12:42:41 augustss Exp $ */
/* $NetBSD: uhci.c,v 1.156 2002/03/04 00:53:33 augustss Exp $ */
/* $FreeBSD$ */
/*
@ -1482,7 +1482,7 @@ uhci_timeout(void *addr)
}
/* Execute the abort in a process context. */
usb_init_task(&uxfer->abort_task, uhci_timeout_task, addr);
usb_init_task(&uxfer->abort_task, uhci_timeout_task, ii->xfer);
usb_add_task(uxfer->xfer.pipe->device, &uxfer->abort_task);
}