This commit is contained in:
Mike Makonnen 2003-12-09 09:04:45 +00:00
parent ed0bd3657c
commit 8c307294e6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=123345
3 changed files with 3 additions and 3 deletions

View file

@ -58,7 +58,7 @@ are found in
and give the broad category of interrupt.
The
.Fa flags
also tell the interrupt handlers the about certain
also tell the interrupt handlers about certain
device driver characteristics.
.Dv INTR_FAST
means the handler is for a timing-critical function.

View file

@ -33,7 +33,7 @@
.Os
.Sh NAME
.Nm bus_alloc_resource
.Nd alloc resources on a bus
.Nd allocate resources from a parent bus
.Sh SYNOPSIS
.In sys/param.h
.In sys/bus.h

View file

@ -80,7 +80,7 @@ with a suitable class, malloc type and flags (see
.Xr malloc 9
for a description of the malloc type and flags).
This will allocate memory for the object based on the object size
specified by the class and initialise it be zeroing the memory and
specified by the class and initialise it by zeroing the memory and
installing a pointer to the class' method dispatch table.
Objects created in this way should be freed by calling
.Fn kobj_free .