diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-01-05 02:23:04 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-01-05 02:23:04 +0000 |
commit | e907a761824d827585588d3ad5c6d730e95687e8 (patch) | |
tree | fcd742494f11ab732a1028d89ff47a5473fa792f /sys/dev/radiovar.h | |
parent | f75648638c499e107d511915333b10144b2ba028 (diff) |
support detach, from netbsd
Diffstat (limited to 'sys/dev/radiovar.h')
-rw-r--r-- | sys/dev/radiovar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/radiovar.h b/sys/dev/radiovar.h index c1fb1b9a663..921f9ec400d 100644 --- a/sys/dev/radiovar.h +++ b/sys/dev/radiovar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: radiovar.h,v 1.2 2001/12/05 10:27:06 mickey Exp $ */ +/* $OpenBSD: radiovar.h,v 1.3 2002/01/05 02:23:03 mickey Exp $ */ /* $RuOBSD: radiovar.h,v 1.3 2001/09/29 17:10:16 pva Exp $ */ /* @@ -34,6 +34,7 @@ struct radio_softc { void *hw_hdl; /* hardware driver handle */ struct device *sc_dev; /* hardware device struct */ struct radio_hw_if *hw_if; /* hardware interface */ + char sc_dying; /* device detached */ }; #endif /* _SYS_DEV_RADIOVAR_H */ |