summaryrefslogtreecommitdiffstats
path: root/Documentation/mca.txt
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1998-05-07 02:55:41 +0000
committerRalf Baechle <ralf@linux-mips.org>1998-05-07 02:55:41 +0000
commitdcec8a13bf565e47942a1751a9cec21bec5648fe (patch)
tree548b69625b18cc2e88c3e68d0923be546c9ebb03 /Documentation/mca.txt
parent2e0f55e79c49509b7ff70ff1a10e1e9e90a3dfd4 (diff)
o Merge with Linux 2.1.99.
o Fix ancient bug in the ELF loader making ldd crash. o Fix ancient bug in the keyboard code for SGI, SNI and Jazz.
Diffstat (limited to 'Documentation/mca.txt')
-rw-r--r--Documentation/mca.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/mca.txt b/Documentation/mca.txt
index 62b777de4..23df12b57 100644
--- a/Documentation/mca.txt
+++ b/Documentation/mca.txt
@@ -57,7 +57,7 @@ into memory. mca_read_stored_pos() accesses that data. mca_read_pos()
and mca_write_pos() are also available for (safer) direct POS access,
but their use is _highly_ discouraged. mca_write_pos() is particularly
dangerous, as it is possible for adapters to be put in inconsistent
-states (i.e. sharing IO address, etc) and may result in crashes, toasted
+states (e.g. sharing IO address, etc) and may result in crashes, toasted
hardware, and operator injury.
User level drivers (such as the AGX X server) can use /proc/mca to find
@@ -124,7 +124,7 @@ Your typical proc function will look something like this:
}
Some of the standard MCA information will already be printed, so don't
-bother repeating it. Don't try putting in more that 3K of information.
+bother repeating it. Don't try putting in more than 3K of information.
Enable this function with:
mca_set_adapter_procfn( slot, dev_getinfo, dev );
@@ -132,8 +132,8 @@ Enable this function with:
Disable it with:
mca_set_adapter_procfn( slot, NULL, NULL );
-It is also recommended that, even if you don't write a proc function, to
-set the name of the adapter (i.e. "PS/2 ESDI Controller") via
+It is also recommended, even if you don't write a proc function, to
+set the name of the adapter (e.g. "PS/2 ESDI Controller") via
mca_set_adapter_name( int slot, char* name ). Up to 30 characters are
used.