Skip to content

Commit a65bcad

Browse files
JuliaLawallhdeller
authored andcommitted
parisc: Fix typos in comments
Various spelling mistakes in comments. Detected with the help of Coccinelle. Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr> Signed-off-by: Helge Deller <deller@gmx.de>
1 parent 234ff4c commit a65bcad

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

arch/parisc/kernel/kprobes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ int __kprobes parisc_kprobe_ss_handler(struct pt_regs *regs)
152152
/* for absolute branch instructions we can copy iaoq_b. for relative
153153
* branch instructions we need to calculate the new address based on the
154154
* difference between iaoq_f and iaoq_b. We cannot use iaoq_b without
155-
* modificationt because it's based on our ainsn.insn address.
155+
* modifications because it's based on our ainsn.insn address.
156156
*/
157157

158158
if (p->post_handler)

arch/parisc/kernel/traps.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ void parisc_terminate(char *msg, struct pt_regs *regs, int code, unsigned long o
469469
* panic notifiers, and we should call panic
470470
* directly from the location that we wish.
471471
* e.g. We should not call panic from
472-
* parisc_terminate, but rather the oter way around.
472+
* parisc_terminate, but rather the other way around.
473473
* This hack works, prints the panic message twice,
474474
* and it enables reboot timers!
475475
*/

arch/parisc/math-emu/dfadd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ dbl_fadd(
253253
return(NOEXCEPTION);
254254
}
255255
right_exponent = 1; /* Set exponent to reflect different bias
256-
* with denomalized numbers. */
256+
* with denormalized numbers. */
257257
}
258258
else
259259
{

arch/parisc/math-emu/dfsub.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ dbl_fsub(
256256
return(NOEXCEPTION);
257257
}
258258
right_exponent = 1; /* Set exponent to reflect different bias
259-
* with denomalized numbers. */
259+
* with denormalized numbers. */
260260
}
261261
else
262262
{

arch/parisc/math-emu/sfadd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ sgl_fadd(
249249
return(NOEXCEPTION);
250250
}
251251
right_exponent = 1; /* Set exponent to reflect different bias
252-
* with denomalized numbers. */
252+
* with denormalized numbers. */
253253
}
254254
else
255255
{

arch/parisc/math-emu/sfsub.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ sgl_fsub(
252252
return(NOEXCEPTION);
253253
}
254254
right_exponent = 1; /* Set exponent to reflect different bias
255-
* with denomalized numbers. */
255+
* with denormalized numbers. */
256256
}
257257
else
258258
{

0 commit comments

Comments
 (0)