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

spelling fixes: arch/um/

Spelling fixes in arch/um/.

Signed-off-by: Simon Arlott <simon@fire.lp0.eu>
Acked-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Adrian Bunk <bunk@kernel.org>

authored by

Simon Arlott and committed by
Adrian Bunk
b60745b9 0c79cf6a

+10 -10
+1 -1
arch/um/drivers/line.c
··· 35 35 /* 36 36 * Returns the free space inside the ring buffer of this line. 37 37 * 38 - * Should be called while holding line->lock (this does not modify datas). 38 + * Should be called while holding line->lock (this does not modify data). 39 39 */ 40 40 static int write_room(struct line *line) 41 41 {
+1 -1
arch/um/drivers/null.c
··· 9 9 #include "chan_user.h" 10 10 #include "os.h" 11 11 12 - /* This address is used only as a unique identifer */ 12 + /* This address is used only as a unique identifier */ 13 13 static int null_chan; 14 14 15 15 static void *null_init(char *str, int device, const struct chan_opts *opts)
+1 -1
arch/um/drivers/stderr_console.c
··· 8 8 /* trivial console driver -- simply dump everything to stderr */ 9 9 10 10 /* 11 - * Don't register by default -- as this registeres very early in the 11 + * Don't register by default -- as this registers very early in the 12 12 * boot process it becomes the default console. 13 13 * 14 14 * Initialized at init time.
+2 -2
arch/um/kernel/gmon_syms.c
··· 12 12 * versions in libgcov. 13 13 * 14 14 * Since SuSE backported the fix, we cannot handle it depending on GCC version. 15 - * So, unconditinally export it. But also give it a weak declaration, which will 16 - * be overriden by any other one. 15 + * So, unconditionally export it. But also give it a weak declaration, which will 16 + * be overridden by any other one. 17 17 */ 18 18 19 19 extern void __gcov_init(void *) __attribute__((weak));
+1 -1
arch/um/kernel/irq.c
··· 326 326 } 327 327 328 328 /* 329 - * do_IRQ handles all normal device IRQ's (the special 329 + * do_IRQ handles all normal device IRQs (the special 330 330 * SMP cross-CPU interrupts have their own specific 331 331 * handlers). 332 332 */
+1 -1
arch/um/kernel/ptrace.c
··· 237 237 /* User-mode eip? */ 238 238 info.si_addr = UPT_IS_USER(regs) ? (void __user *) UPT_IP(regs) : NULL; 239 239 240 - /* Send us the fakey SIGTRAP */ 240 + /* Send us the fake SIGTRAP */ 241 241 force_sig_info(SIGTRAP, &info, tsk); 242 242 } 243 243
+1 -1
arch/um/sys-i386/bug.c
··· 6 6 #include <linux/uaccess.h> 7 7 8 8 /* Mostly copied from i386/x86_86 - eliminated the eip < PAGE_OFFSET because 9 - * that's not relevent in skas mode. 9 + * that's not relevant in skas mode. 10 10 */ 11 11 12 12 int is_valid_bugaddr(unsigned long eip)
+1 -1
arch/um/sys-i386/tls.c
··· 45 45 * XXX: Consider leaving one free slot for glibc usage at first place. This must 46 46 * be done here (and by changing GDT_ENTRY_TLS_* macros) and nowhere else. 47 47 * 48 - * Also, this must be tested when compiling in SKAS mode with dinamic linking 48 + * Also, this must be tested when compiling in SKAS mode with dynamic linking 49 49 * and running against NPTL. 50 50 */ 51 51 static int get_free_idx(struct task_struct* task)
+1 -1
arch/um/sys-x86_64/bug.c
··· 6 6 #include <linux/uaccess.h> 7 7 8 8 /* Mostly copied from i386/x86_86 - eliminated the eip < PAGE_OFFSET because 9 - * that's not relevent in skas mode. 9 + * that's not relevant in skas mode. 10 10 */ 11 11 12 12 int is_valid_bugaddr(unsigned long eip)