diff options
author | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2010-12-06 04:41:41 +0000 |
---|---|---|
committer | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2010-12-06 04:41:41 +0000 |
commit | 586226f2be8916cb9799bd7c4c47749b6f386d52 (patch) | |
tree | 0345ca9864b3287f60b7d747fc92d9727488e4fb /sys/dev/usb/ueaglevar.h | |
parent | c771dfeb92ac7c03200839673dde83bd36b2ec0e (diff) |
* replace per-driver dying and/or other state variables with use of
usbd_deactivete() and usbd_is_dying()
* use usbd_deactivate() in activate()/DEACTIVATE
* convert a few more direct checks of the associated bus' dying flag
with usbd_is_dying()
Diffstat (limited to 'sys/dev/usb/ueaglevar.h')
-rw-r--r-- | sys/dev/usb/ueaglevar.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/usb/ueaglevar.h b/sys/dev/usb/ueaglevar.h index f22448b2ccb..f5c39281568 100644 --- a/sys/dev/usb/ueaglevar.h +++ b/sys/dev/usb/ueaglevar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ueaglevar.h,v 1.2 2007/06/06 19:25:49 mk Exp $ */ +/* $OpenBSD: ueaglevar.h,v 1.3 2010/12/06 04:41:40 jakemsr Exp $ */ /*- * Copyright (c) 2003-2005 @@ -184,8 +184,6 @@ struct ueagle_softc { uint16_t isize; char ibuf[32]; - int gone; - uint16_t index; uint32_t data; }; |