aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68k/math-emu
diff options
context:
space:
mode:
authorSimon Arlott <simon@fire.lp0.eu>2007-10-20 01:20:32 +0200
committerAdrian Bunk <bunk@kernel.org>2007-10-20 01:20:32 +0200
commit0c79cf6af16c4a4c9ef539b52387de07f5ed62f5 (patch)
treefac52bddb48c6d78fd2a4e5d40efdf4418f5b43b /arch/m68k/math-emu
parentspelling fixes: arch/m32r/ (diff)
downloadlinux-dev-0c79cf6af16c4a4c9ef539b52387de07f5ed62f5.tar.xz
linux-dev-0c79cf6af16c4a4c9ef539b52387de07f5ed62f5.zip
spelling fixes: arch/m68k/
Spelling fixes in arch/m68k/. Signed-off-by: Simon Arlott <simon@fire.lp0.eu> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Adrian Bunk <bunk@kernel.org>
Diffstat (limited to 'arch/m68k/math-emu')
-rw-r--r--arch/m68k/math-emu/fp_log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/math-emu/fp_log.c b/arch/m68k/math-emu/fp_log.c
index 87b4f0158560..b1033ae0d6f0 100644
--- a/arch/m68k/math-emu/fp_log.c
+++ b/arch/m68k/math-emu/fp_log.c
@@ -65,7 +65,7 @@ fp_fsqrt(struct fp_ext *dest, struct fp_ext *src)
fp_copy_ext(&src2, dest);
/*
- * The taylor row arround a for sqrt(x) is:
+ * The taylor row around a for sqrt(x) is:
* sqrt(x) = sqrt(a) + 1/(2*sqrt(a))*(x-a) + R
* With a=1 this gives:
* sqrt(x) = 1 + 1/2*(x-1)