diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2013-11-01 12:00:55 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2013-11-01 12:00:55 +0000 |
commit | 8de4f21f9c368b1fdeaafe1e74718c25a926b29e (patch) | |
tree | db89305a78f9ab67450fe6f6485ab0a4737351a4 /sys/dev/usb/usbdivar.h | |
parent | 57be7de8d984ac7d25941900bf1eb33425ef2f5c (diff) |
Move the abort_task storage to the generic USB xfer structure instead
of defining it in every controller specific structure.
Diffstat (limited to 'sys/dev/usb/usbdivar.h')
-rw-r--r-- | sys/dev/usb/usbdivar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/usbdivar.h b/sys/dev/usb/usbdivar.h index 34428f10727..19546697e19 100644 --- a/sys/dev/usb/usbdivar.h +++ b/sys/dev/usb/usbdivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: usbdivar.h,v 1.52 2013/10/19 08:29:30 mpi Exp $ */ +/* $OpenBSD: usbdivar.h,v 1.53 2013/11/01 12:00:54 mpi Exp $ */ /* $NetBSD: usbdivar.h,v 1.70 2002/07/11 21:14:36 augustss Exp $ */ /* $FreeBSD: src/sys/dev/usb/usbdivar.h,v 1.11 1999/11/17 22:33:51 n_hibma Exp $ */ @@ -210,6 +210,7 @@ struct usbd_xfer { void *hcpriv; /* private use by the HC driver */ + struct usb_task abort_task; struct timeout timeout_handle; }; |