summaryrefslogtreecommitdiffstats
path: root/doc/supplements
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-25 18:02:33 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-25 18:02:33 +0000
commit9ec462aa509c5c8f750334af9d12bda8cd0d807d (patch)
tree3be668e895c5bc2045819bed3b284e159fc11df5 /doc/supplements
parentAdded descriptions of the mount table entry elements. (diff)
downloadrtems-9ec462aa509c5c8f750334af9d12bda8cd0d807d.tar.bz2
Fixing many lines that are too long to format cleanly.
Diffstat (limited to 'doc/supplements')
-rw-r--r--doc/supplements/hppa1_1/cputable.t3
-rw-r--r--doc/supplements/powerpc/cputable.t5
2 files changed, 5 insertions, 3 deletions
diff --git a/doc/supplements/hppa1_1/cputable.t b/doc/supplements/hppa1_1/cputable.t
index 3758fb61a6..af741307dd 100644
--- a/doc/supplements/hppa1_1/cputable.t
+++ b/doc/supplements/hppa1_1/cputable.t
@@ -41,7 +41,8 @@ typedef struct @{
hppa_rtems_isr_entry spurious_handler;
- unsigned32 itimer_clicks_per_microsecond; /* for use by Clock driver */
+ /* itimer_clicks_per_microsecond is for the Clock driver */
+ unsigned32 itimer_clicks_per_microsecond;
@} rtems_cpu_table;
@end example
diff --git a/doc/supplements/powerpc/cputable.t b/doc/supplements/powerpc/cputable.t
index 73bd11a29b..86907dcefb 100644
--- a/doc/supplements/powerpc/cputable.t
+++ b/doc/supplements/powerpc/cputable.t
@@ -37,7 +37,8 @@ typedef struct @{
/* end of fields required on all CPUs */
unsigned32 clicks_per_usec; /* Timer clicks per microsecond */
- void (*spurious_handler)(unsigned32 vector, CPU_Interrupt_frame *);
+ void (*spurious_handler)(
+ unsigned32 vector, CPU_Interrupt_frame *);
boolean exceptions_in_RAM; /* TRUE if in RAM */
#if defined(ppc403)
@@ -47,7 +48,7 @@ typedef struct @{
boolean serial_cts_rts;
unsigned32 serial_rate;
unsigned32 timer_average_overhead; /* in ticks */
- unsigned32 timer_least_valid; /* Least valid number from timer */
+ unsigned32 timer_least_valid; /* Least valid number from timer */
#endif
@};
@end example