summaryrefslogtreecommitdiffstats
path: root/doc/supplements
diff options
context:
space:
mode:
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