summaryrefslogtreecommitdiff
path: root/share/man/man9/iic.9
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2004-05-23 22:10:54 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2004-05-23 22:10:54 +0000
commit7597ef934649e739b8875c5bc1b540b02c883dea (patch)
tree760c7c3d31ab76b0e00814dc94de7448aed574a0 /share/man/man9/iic.9
parent3599609acc65c0f323f6483394cf81b167101347 (diff)
- typos
- new sentence, new line
Diffstat (limited to 'share/man/man9/iic.9')
-rw-r--r--share/man/man9/iic.915
1 files changed, 9 insertions, 6 deletions
diff --git a/share/man/man9/iic.9 b/share/man/man9/iic.9
index 3bd0a70f08a..697f22765e0 100644
--- a/share/man/man9/iic.9
+++ b/share/man/man9/iic.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: iic.9,v 1.1 2004/05/23 18:37:06 grange Exp $
+.\" $OpenBSD: iic.9,v 1.2 2004/05/23 22:10:53 jmc Exp $
.\"
.\" Copyright (c) 2003 Wasabi Systems, Inc.
.\" All rights reserved.
@@ -98,7 +98,7 @@ temperature sensors, fan controllers, real-time clocks, tuners,
and other types of integrated circuits.
The
.Nm iic
-interface provides an means of communicating with I2C-connected devices.
+interface provides a means of communicating with I2C-connected devices.
The System Management Bus, or SMBus, is a variant of the I2C bus with
a simplified command protocol and some electrical differences.
.Sh DATA TYPES
@@ -174,7 +174,7 @@ If
.Fa cmdlen
is non-zero, the command pointed to by
.Fa cmdbuf
-is then send to the device.
+is then sent to the device.
If
.Fa buflen
is non-zero,
@@ -196,21 +196,24 @@ flag indicates to
.Fn iic_exec
that sleeping is not permitted.
.It Fn iic_smbus_write_byte "ic" "addr" "cmd" "data" "flags"
-Perform an SMBus WRITE BYTE operation. This is equivalent to
+Perform an SMBus WRITE BYTE operation.
+This is equivalent to
I2C_OP_WRITE_WITH_STOP with
.Fa cmdlen
of 1 and
.Fa len
of 1.
.It Fn iic_smbus_read_byte "ic" "addr" "cmd" "datap" "flags"
-Perform an SMBus READ BYTE operation. This is equivalent to
+Perform an SMBus READ BYTE operation.
+This is equivalent to
I2C_OP_READ_WITH_STOP with
.Fa cmdlen
of 1 and
.Fa len
of 1.
.It Fn iic_smbus_receive_byte "ic" "addr" "datap" "flags"
-Perform an SMBus RECEIVE BYTE operation. This is equivalent to
+Perform an SMBus RECEIVE BYTE operation.
+This is equivalent to
I2C_OP_READ_WITH_STOP with
.Fa cmdlen
of 0 and