Skip to content

Commit d17ecf4

Browse files
JuliaLawallguoren83
authored andcommitted
csky: fix typos in comments
Various spelling mistakes in comments. Detected with the help of Coccinelle. Signed-off-by: Julia Lawall <[email protected]> Signed-off-by: Guo Ren <[email protected]>
1 parent 3123109 commit d17ecf4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arch/csky/kernel/module.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ int apply_relocate_add(Elf32_Shdr *sechdrs, const char *strtab,
6868
*location = rel[i].r_addend + sym->st_value;
6969
break;
7070
case R_CSKY_PC32:
71-
/* Add the value, subtract its postition */
71+
/* Add the value, subtract its position */
7272
*location = rel[i].r_addend + sym->st_value
7373
- (uint32_t)location;
7474
break;

arch/csky/kernel/probes/uprobes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ void arch_uprobe_abort_xol(struct arch_uprobe *auprobe, struct pt_regs *regs)
102102
struct uprobe_task *utask = current->utask;
103103

104104
/*
105-
* Task has received a fatal signal, so reset back to probbed
105+
* Task has received a fatal signal, so reset back to probed
106106
* address.
107107
*/
108108
instruction_pointer_set(regs, utask->vaddr);

0 commit comments

Comments
 (0)