Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Fix simple typos

This corrects some trivial errors in ARM docs and comments,

Signed-off-by: Adrian Bunk <bunk@stusta.de>

authored by

Andrzej Zaborowski and committed by
Adrian Bunk
13fce806 53813158

+6 -6
+1 -1
Documentation/arm/Booting
··· 118 118 119 119 In either case, the following conditions must be met: 120 120 121 - - Quiesce all DMA capable devicess so that memory does not get 121 + - Quiesce all DMA capable devices so that memory does not get 122 122 corrupted by bogus network packets or disk data. This will save 123 123 you many hours of debug. 124 124
+1 -1
Documentation/arm/README
··· 89 89 Although modularisation is supported (and required for the FP emulator), 90 90 each module on an ARM2/ARM250/ARM3 machine when is loaded will take 91 91 memory up to the next 32k boundary due to the size of the pages. 92 - Therefore, modularisation on these machines really worth it? 92 + Therefore, is modularisation on these machines really worth it? 93 93 94 94 However, ARM6 and up machines allow modules to take multiples of 4k, and 95 95 as such Acorn RiscPCs and other architectures using these processors can
+1 -1
Documentation/arm/Setup
··· 58 58 video_y 59 59 60 60 This describes the character position of cursor on VGA console, and 61 - is otherwise unused. (should not used for other console types, and 61 + is otherwise unused. (should not be used for other console types, and 62 62 should not be used for other purposes). 63 63 64 64 memc_control_reg
+3 -3
include/linux/timer.h
··· 69 69 * @timer: the timer to be added 70 70 * 71 71 * The kernel will do a ->function(->data) callback from the 72 - * timer interrupt at the ->expired point in the future. The 72 + * timer interrupt at the ->expires point in the future. The 73 73 * current time is 'jiffies'. 74 74 * 75 - * The timer's ->expired, ->function (and if the handler uses it, ->data) 75 + * The timer's ->expires, ->function (and if the handler uses it, ->data) 76 76 * fields must be set prior calling this function. 77 77 * 78 - * Timers with an ->expired field in the past will be executed in the next 78 + * Timers with an ->expires field in the past will be executed in the next 79 79 * timer tick. 80 80 */ 81 81 static inline void add_timer(struct timer_list *timer)