Deleted Added
full compact
device_enable.9 (84306) device_enable.9 (89124)
1.\" -*- nroff -*-
2.\"
3.\" Copyright (c) 1998 Doug Rabson
4.\"
5.\" All rights reserved.
6.\"
7.\" This program is free software.
8.\"

--- 12 unchanged lines hidden (view full) ---

21.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
22.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28.\"
1.\" -*- nroff -*-
2.\"
3.\" Copyright (c) 1998 Doug Rabson
4.\"
5.\" All rights reserved.
6.\"
7.\" This program is free software.
8.\"

--- 12 unchanged lines hidden (view full) ---

21.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
22.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28.\"
29.\" $FreeBSD: head/share/man/man9/device_enable.9 84306 2001-10-01 16:09:29Z ru $
29.\" $FreeBSD: head/share/man/man9/device_enable.9 89124 2002-01-09 11:43:48Z mpp $
30.\"
31.Dd June 16, 1998
32.Dt DEVICE_ENABLE 9
33.Os
34.Sh NAME
35.Nm device_enable ,
36.Nm device_disable ,
37.Nm device_is_enabled

--- 8 unchanged lines hidden (view full) ---

46.Ft int
47.Fn device_is_enabled "device_t dev"
48.Sh DESCRIPTION
49Each device has an enabled flag associated with it. A device is
50enabled by default when it is created but may be disabled (for
51instance to prevent a destructive or time consuming probe attempt).
52To disable a device, call
53.Xr device_disable 9 ,
30.\"
31.Dd June 16, 1998
32.Dt DEVICE_ENABLE 9
33.Os
34.Sh NAME
35.Nm device_enable ,
36.Nm device_disable ,
37.Nm device_is_enabled

--- 8 unchanged lines hidden (view full) ---

46.Ft int
47.Fn device_is_enabled "device_t dev"
48.Sh DESCRIPTION
49Each device has an enabled flag associated with it. A device is
50enabled by default when it is created but may be disabled (for
51instance to prevent a destructive or time consuming probe attempt).
52To disable a device, call
53.Xr device_disable 9 ,
54to reenable it, call
54to re-enable it, call
55.Xr device_enable 9
56and to test to see if a device is enabled, call
57.Xr device_is_enabled 9 .
58.Sh SEE ALSO
59.Xr device 9
60.Sh AUTHORS
61This man page was written by
62.An Doug Rabson .
55.Xr device_enable 9
56and to test to see if a device is enabled, call
57.Xr device_is_enabled 9 .
58.Sh SEE ALSO
59.Xr device 9
60.Sh AUTHORS
61This man page was written by
62.An Doug Rabson .