Browse Source

Fix simple typos

This corrects some trivial errors in ARM docs and comments,

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Andrzej Zaborowski 19 years ago
parent
commit
13fce80629
4 changed files with 6 additions and 6 deletions
  1. 1 1
      Documentation/arm/Booting
  2. 1 1
      Documentation/arm/README
  3. 1 1
      Documentation/arm/Setup
  4. 3 3
      include/linux/timer.h

+ 1 - 1
Documentation/arm/Booting

@@ -118,7 +118,7 @@ to store page tables.  The recommended placement is 32KiB into RAM.
 
 
 In either case, the following conditions must be met:
 In either case, the following conditions must be met:
 
 
-- Quiesce all DMA capable devicess so that memory does not get
+- Quiesce all DMA capable devices so that memory does not get
   corrupted by bogus network packets or disk data. This will save
   corrupted by bogus network packets or disk data. This will save
   you many hours of debug.
   you many hours of debug.
 
 

+ 1 - 1
Documentation/arm/README

@@ -89,7 +89,7 @@ Modules
   Although modularisation is supported (and required for the FP emulator),
   Although modularisation is supported (and required for the FP emulator),
   each module on an ARM2/ARM250/ARM3 machine when is loaded will take
   each module on an ARM2/ARM250/ARM3 machine when is loaded will take
   memory up to the next 32k boundary due to the size of the pages.
   memory up to the next 32k boundary due to the size of the pages.
-  Therefore, modularisation on these machines really worth it?
+  Therefore, is modularisation on these machines really worth it?
 
 
   However, ARM6 and up machines allow modules to take multiples of 4k, and
   However, ARM6 and up machines allow modules to take multiples of 4k, and
   as such Acorn RiscPCs and other architectures using these processors can
   as such Acorn RiscPCs and other architectures using these processors can

+ 1 - 1
Documentation/arm/Setup

@@ -58,7 +58,7 @@ below:
  video_y
  video_y
 
 
    This describes the character position of cursor on VGA console, and
    This describes the character position of cursor on VGA console, and
-   is otherwise unused. (should not used for other console types, and
+   is otherwise unused. (should not be used for other console types, and
    should not be used for other purposes).
    should not be used for other purposes).
 
 
  memc_control_reg
  memc_control_reg

+ 3 - 3
include/linux/timer.h

@@ -69,13 +69,13 @@ extern unsigned long next_timer_interrupt(void);
  * @timer: the timer to be added
  * @timer: the timer to be added
  *
  *
  * The kernel will do a ->function(->data) callback from the
  * The kernel will do a ->function(->data) callback from the
- * timer interrupt at the ->expired point in the future. The
+ * timer interrupt at the ->expires point in the future. The
  * current time is 'jiffies'.
  * current time is 'jiffies'.
  *
  *
- * The timer's ->expired, ->function (and if the handler uses it, ->data)
+ * The timer's ->expires, ->function (and if the handler uses it, ->data)
  * fields must be set prior calling this function.
  * fields must be set prior calling this function.
  *
  *
- * Timers with an ->expired field in the past will be executed in the next
+ * Timers with an ->expires field in the past will be executed in the next
  * timer tick.
  * timer tick.
  */
  */
 static inline void add_timer(struct timer_list *timer)
 static inline void add_timer(struct timer_list *timer)