diff options
author | joe <joe@FreeBSD.org> | 2002-01-21 03:35:55 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2002-01-21 03:35:55 +0000 |
commit | 2a5c822c6c779312f6d91e906acd3ae54e556416 (patch) | |
tree | 32bd4985c8e8148ce70c537d8dfbdac0b332d499 /sys/dev/usb/uhcivar.h | |
parent | 4e0549db5573bd438ce183a3604b25b9ee373c32 (diff) | |
download | FreeBSD-src-2a5c822c6c779312f6d91e906acd3ae54e556416.zip FreeBSD-src-2a5c822c6c779312f6d91e906acd3ae54e556416.tar.gz |
Merge from NetBSD:
uhci.c: -r1.82
uhcivar.h: -r1.22
date: 2000/01/26 10:04:39; author: augustss; state: Exp;
Try to avoid accessing the HC if it is dead. Suggested by mycroft.
Diffstat (limited to 'sys/dev/usb/uhcivar.h')
-rw-r--r-- | sys/dev/usb/uhcivar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/uhcivar.h b/sys/dev/usb/uhcivar.h index be50295..5183f84 100644 --- a/sys/dev/usb/uhcivar.h +++ b/sys/dev/usb/uhcivar.h @@ -1,4 +1,4 @@ -/* $NetBSD: uhcivar.h,v 1.21 2000/01/18 20:11:01 augustss Exp $ */ +/* $NetBSD: uhcivar.h,v 1.22 2000/01/26 10:04:39 augustss Exp $ */ /* $FreeBSD$ */ /* @@ -163,6 +163,7 @@ typedef struct uhci_softc { char sc_isreset; char sc_suspend; + char sc_dying; LIST_HEAD(, uhci_intr_info) sc_intrhead; |