mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
Fixed bitrot in synopsis (u_long changed to uintptr_t for portability).
This commit is contained in:
parent
27ab138fcc
commit
522e56cf6d
2 changed files with 6 additions and 6 deletions
|
|
@ -26,7 +26,7 @@
|
|||
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
.\"
|
||||
.\" $Id$
|
||||
.\" $Id: BUS_READ_IVAR.9,v 1.1 1998/09/03 21:52:04 dfr Exp $
|
||||
.\"
|
||||
.Dd June 16, 1998
|
||||
.Os
|
||||
|
|
@ -40,9 +40,9 @@
|
|||
.Fd #include <sys/param.h>
|
||||
.Fd #include <sys/bus.h>
|
||||
.Ft int
|
||||
.Fn BUS_READ_IVAR "device_t dev" "device_t child" "int index" "u_long *result"
|
||||
.Fn BUS_READ_IVAR "device_t dev" "device_t child" "int index" "uintptr_t *result"
|
||||
.Ft int
|
||||
.Fn BUS_WRITE_IVAR "device_t dev" "device_t child" "int index" "u_long value"
|
||||
.Fn BUS_WRITE_IVAR "device_t dev" "device_t child" "int index" "uintptr_t value"
|
||||
.Sh DESCRIPTION
|
||||
.Pp
|
||||
These two methods manage a bus specific set of instance variables of
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
.\"
|
||||
.\" $Id$
|
||||
.\" $Id: bus_generic_read_ivar.9,v 1.1 1998/09/03 21:52:05 dfr Exp $
|
||||
.\"
|
||||
.Dd June 16, 1998
|
||||
.Os
|
||||
|
|
@ -44,9 +44,9 @@ for busses
|
|||
.Fd #include <sys/param.h>
|
||||
.Fd #include <sys/bus.h>
|
||||
.Ft int
|
||||
.Fn bus_generic_read_ivar "device_t dev" "device_t child" "int index" "u_long *result"
|
||||
.Fn bus_generic_read_ivar "device_t dev" "device_t child" "int index" "uintptr_t *result"
|
||||
.Ft int
|
||||
.Fn bus_generic_write_ivar "device_t dev" "device_t child" "int index" "u_long value"
|
||||
.Fn bus_generic_write_ivar "device_t dev" "device_t child" "int index" "uintptr_t value"
|
||||
.Sh DESCRIPTION
|
||||
.Pp
|
||||
These functions simply return
|
||||
|
|
|
|||
Loading…
Reference in a new issue