Fixing many lines that are too long to format cleanly.

This commit is contained in:
Joel Sherrill
1999-10-25 18:02:33 +00:00
parent 86437ec02a
commit 9ec462aa50
5 changed files with 56 additions and 33 deletions

View File

@@ -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

View File

@@ -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