summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-08-13 08:04:44 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-08-13 08:04:44 +0000
commit2907b361799b83c856556dda16643ee618b60cb6 (patch)
treee0b23f07027523b442a55d7f1d28a086494c864f /doc
parent2003-08-11 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-2907b361799b83c856556dda16643ee618b60cb6.tar.bz2
2003-08-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* ide-ctrl.t: Merger from 4.6-branch.
Diffstat (limited to 'doc')
-rw-r--r--doc/bsp_howto/ChangeLog4
-rw-r--r--doc/bsp_howto/ide-ctrl.t10
2 files changed, 9 insertions, 5 deletions
diff --git a/doc/bsp_howto/ChangeLog b/doc/bsp_howto/ChangeLog
index 636cf95660..d18afa837d 100644
--- a/doc/bsp_howto/ChangeLog
+++ b/doc/bsp_howto/ChangeLog
@@ -1,3 +1,7 @@
+2003-08-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * ide-ctrl.t: Merger from 4.6-branch.
+
2003-01-28 Joel Sherrill <joel@OARcorp.com>
* makefiles.t, support.t: Updated to reflect use of automake in
diff --git a/doc/bsp_howto/ide-ctrl.t b/doc/bsp_howto/ide-ctrl.t
index ca23572cac..f5ece8507d 100644
--- a/doc/bsp_howto/ide-ctrl.t
+++ b/doc/bsp_howto/ide-ctrl.t
@@ -25,7 +25,7 @@ The reference implementation for an IDE Controller driver can
be found in @code{$RTEMS_SRC_ROOT/c/src/libchip/ide}. This driver
is based on the libchip concept and allows to work with any of the IDE
Controller chips simply by appropriate configuration of BSP. Drivers for a
-paticular IDE Controller chips locate in the following directories: drivers
+particular IDE Controller chips locate in the following directories: drivers
for well-known IDE Controller chips locate into
@code{$RTEMS_SRC_ROOT/c/src/libchip/ide}, drivers for IDE Controller chips
integrated with CPU locate into
@@ -38,7 +38,7 @@ for that particular IDE Controller chip.
@section Initialization
-IDE Controller chips used by a BSP are statically confiured into
+IDE Controller chips used by a BSP are statically configured into
@code{IDE_Controller_Table}. The @code{ide_controller_initialize} routine is
responsible for initialization of all configured IDE controller chips.
Initialization order of the chips based on the order the chips are defined in
@@ -56,7 +56,7 @@ rtems_device_driver ide_controller_initialize(
)
@{
for each IDE Controller chip configured in IDE_Controller_Table
- if (BSP dependant probe(if exists) AND device probe for this IDE chip
+ if (BSP dependent probe(if exists) AND device probe for this IDE chip
indicates it is present)
perform initialization of the particular chip
register device with configured name for this chip
@@ -73,7 +73,7 @@ number. This routine is not allowed to be called from an application.
@example
@group
void ide_controller_read_register(rtems_device_minor_number minor,
- unsigned32 reg, unsiged32 *value)
+ unsigned32 reg, unsigned32 *value)
@{
get IDE Controller chip configuration information from
IDE_Controller_Table by minor number
@@ -92,7 +92,7 @@ number. This routine is not allowed to be called from an application.
@example
@group
void ide_controller_write_register(rtems_device_minor_number minor,
- unsigned32 reg, unsiged32 value)
+ unsigned32 reg, unsigned32 value)
@{
get IDE Controller chip configuration information from
IDE_Controller_Table by minor number